/* ========================================
   DOLLHAUS ROYALE · STATIC WEBSITE
   BASE STYLES (used across all pages)
   ======================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    background: #FCF9F4;
    color: #2A1810;
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    line-height: 1.8;
    opacity: 0;
    transition: opacity 0.9s ease;
}

body.loaded {
    opacity: 1;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 60px;
}

/* ---------- TYPOGRAPHY ---------- */
h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    letter-spacing: 0.03em;
}

.section-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #950606;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.gold-divider {
    width: 50px;
    height: 1.5px;
    background: #CC9A3D;
    margin: 1.2rem 0;
}

.gold-divider.centered {
    margin: 1.2rem auto;
}

/* ---------- BRAND CREST ---------- */
img.dr-crest {
    display: block;
    object-fit: contain;
    border-radius: 50%;
}

/* ---------- PEDIGREE DIVIDER ---------- */
.pedigree-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    max-width: 420px;
    margin: 0 auto;
}

.pedigree-divider .line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(204, 154, 61, 0.55));
}

.pedigree-divider .line.right {
    background: linear-gradient(90deg, rgba(204, 154, 61, 0.55), transparent);
}

.pedigree-divider .dr-crest {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.section-seam {
    position: relative;
    height: 1px;
}

.section-seam .pedigree-divider {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: #FCF9F4;
    padding: 0 30px;
}

.section-seam.on-tint .pedigree-divider {
    background: #f8f4ed;
}

/* ---------- BUTTONS ---------- */
.btn-primary {
    display: inline-block;
    padding: 16px 56px;
    background: #950606;
    color: #FCF9F4;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.6s ease;
    border: 1px solid #950606;
    cursor: pointer;
}

.btn-primary:hover {
    background: transparent;
    color: #8B1A1A;
}

/* Bigger hero CTA — used only for the primary "Apply For A Puppy" button
   in the hero so the rest of the site's buttons keep their normal size */
.btn-hero-cta {
    padding: 21px 68px;
    font-size: 0.86rem;
    letter-spacing: 0.18em;
}

/* Idle glow — added by JS after ~60s of no interaction, removed on the
   next scroll/move/tap so it only draws the eye when someone has paused */
@keyframes ctaIdleGlow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(233, 199, 122, 0);
    }
    50% {
        box-shadow: 0 0 0 7px rgba(233, 199, 122, 0.22), 0 0 34px 8px rgba(233, 199, 122, 0.55);
    }
}

.btn-hero-cta.idle-glow {
    animation: ctaIdleGlow 2.4s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    .btn-hero-cta.idle-glow {
        animation: none;
        box-shadow: 0 0 0 6px rgba(233, 199, 122, 0.4);
    }
}

.btn-secondary {
    display: inline-block;
    padding: 16px 56px;
    border: 1px solid #2A1810;
    color: #2A1810;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.6s ease;
    margin-left: 12px;
    cursor: pointer;
    background: transparent;
}

.btn-secondary:hover {
    background: #2A1810;
    color: #FCF9F4;
}

.btn-viewmore {
    display: inline-block;
    padding: 12px 40px;
    background: transparent;
    color: #950606;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.7rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.6s ease;
    border: 1px solid #950606;
    cursor: pointer;
    margin-top: 1rem;
    font-family: 'Inter', sans-serif;
}

.btn-viewmore:hover {
    background: #950606;
    color: #FCF9F4;
}

/* ---------- HEADER ---------- */
header {
    padding: 18px 0;
    border-bottom: 1px solid rgba(139, 26, 26, 0.08);
    position: sticky;
    top: 0;
    background: rgba(252, 249, 244, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 110;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #2A1810;
    text-decoration: none;
}

.logo .dr-crest {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.logo span {
    color: #950606;
    font-style: italic;
    font-weight: 400;
}

/* ---------- HEADER RIGHT CLUSTER ---------- */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.icon-btn {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(139, 26, 26, 0.25);
    border-radius: 50%;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.4s ease, background 0.4s ease;
    flex-shrink: 0;
}

.icon-btn svg {
    width: 16px;
    height: 16px;
    stroke: #950606;
    fill: none;
    stroke-width: 1.6;
}

.icon-btn:hover {
    background: #950606;
    border-color: #950606;
}

.icon-btn:hover svg {
    stroke: #FCF9F4;
}

.nav-apply {
    border: 1px solid #950606;
    padding: 10px 26px;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    color: #950606;
    transition: all 0.5s ease;
    white-space: nowrap;
}

.nav-apply:hover {
    background: #950606;
    color: #FCF9F4;
}

/* ---------- SEARCH BAR ---------- */
.search-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease;
    border-bottom: 1px solid transparent;
}

.search-panel.open {
    max-height: 90px;
    border-bottom: 1px solid rgba(139, 26, 26, 0.08);
}

.search-panel-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 0;
}

.search-panel-inner svg {
    width: 16px;
    height: 16px;
    stroke: #950606;
    fill: none;
    stroke-width: 1.6;
    flex-shrink: 0;
}

.search-panel input {
    flex: 1;
    border: none;
    background: none;
    outline: none;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: #2A1810;
    border-bottom: 1px solid rgba(139, 26, 26, 0.15);
    padding-bottom: 6px;
}

.search-panel input::placeholder {
    color: #9C8A78;
}

.search-hint {
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #9C8A78;
    white-space: nowrap;
}

/* ---------- BURGER ---------- */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
    z-index: 101;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: #2A1810;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- NAV PANEL ---------- */
.nav-links {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    background: rgba(252, 249, 244, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    list-style: none;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    opacity: 0;
    transform: scale(0.98);
    pointer-events: none;
    transition: opacity 0.45s ease, transform 0.45s ease;
    z-index: 100;
}

.nav-links.open {
    opacity: 1;
    transform: scale(1);
    pointer-events: all;
}

.nav-links::before {
    content: '';
    position: absolute;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: #CC9A3D;
}

.nav-links li {
    border-bottom: none;
    width: 100%;
    max-width: 340px;
}

.nav-links a {
    display: block;
    text-decoration: none;
    color: #2A1810;
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    padding: 12px 0;
    transition: color 0.4s ease;
}

.nav-links a:hover {
    color: #950606;
}

.nav-links li.nav-apply-row {
    border-bottom: none;
    margin-top: 16px;
    max-width: none;
}

.nav-links li.nav-apply-row a {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    border: 1px solid #950606;
    color: #950606;
    padding: 12px 30px;
}

.nav-links li.nav-apply-row a:hover {
    background: #950606;
    color: #FCF9F4;
    padding-left: 30px;
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(42, 24, 16, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    z-index: 99;
}

.nav-overlay.open {
    opacity: 1;
    pointer-events: all;
}

/* ---------- HERO (full-bleed red_dog.png background) ---------- */
.hero {
    position: relative;
    padding: 130px 0 90px;
    min-height: 780px;
    box-sizing: border-box;
    background-color: #2A1810;
    background-image:
        linear-gradient(180deg, rgba(20, 9, 7, 0.30) 0%, rgba(20, 9, 7, 0.22) 26%, rgba(20, 9, 7, 0.55) 60%, rgba(20, 9, 7, 0.72) 100%),
        url('red_dog.png');
    background-size: cover;
    background-position: center 10%;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-grid {
    display: flex;
    justify-content: center;
}

.hero-content {
    max-width: 720px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content .dr-crest {
    width: 66px;
    height: 66px;
    margin-bottom: 1.4rem;
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.4));
}

.hero-content .section-label {
    color: #E9C77A;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.hero-content h1 {
    font-size: 4.2rem;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #FCF9F4;
    text-shadow: 0 3px 22px rgba(0, 0, 0, 0.45), 0 1px 4px rgba(0, 0, 0, 0.6);
}

.hero-content h1 em {
    color: #E9C77A;
    font-style: italic;
    font-weight: 400;
    text-shadow: 0 3px 22px rgba(0, 0, 0, 0.45), 0 1px 4px rgba(0, 0, 0, 0.6);
}

.hero-content .tagline {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-style: italic;
    color: #FCF9F4;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.15rem;
    color: rgba(252, 249, 244, 0.92);
    max-width: 480px;
    margin-bottom: 2rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-content .btn-primary {
    background: #950606;
    border-color: #E9C77A;
}

.hero-content .btn-secondary {
    border-color: #FCF9F4;
    color: #FCF9F4;
}

.hero-content .btn-secondary:hover {
    background: #FCF9F4;
    color: #2A1810;
}

/* ---------- LOAD ANIMATION ---------- */
.hero-content > * {
    opacity: 0;
    transform: translateY(14px);
}

body.loaded .hero-content > * {
    animation: heroRise 0.9s ease forwards;
}

body.loaded .hero-content > *:nth-child(1) { animation-delay: 0.1s; }
body.loaded .hero-content > *:nth-child(2) { animation-delay: 0.2s; }
body.loaded .hero-content > *:nth-child(3) { animation-delay: 0.32s; }
body.loaded .hero-content > *:nth-child(4) { animation-delay: 0.44s; }
body.loaded .hero-content > *:nth-child(5) { animation-delay: 0.54s; }
body.loaded .hero-content > *:nth-child(6) { animation-delay: 0.64s; }
body.loaded .hero-content > *:nth-child(7) { animation-delay: 0.72s; }

@keyframes heroRise {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-content > * {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

/* ---------- STORY SECTION ---------- */
.story-section {
    padding: 100px 0;
    background: #f8f4ed;
    overflow: hidden;
}

.story-bleed-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
}

.story-text-wrap {
    padding: 0 60px 0 80px;
}

.story-text {
    max-width: 560px;
}

.story-text .drop-cap {
    float: left;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 4.4rem;
    line-height: 0.75;
    color: #950606;
    padding-right: 10px;
    padding-top: 6px;
}

.story-text h2 {
    font-size: 3.2rem;
    margin-bottom: 0.5rem;
}

.story-text .story-sub {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-style: italic;
    color: #950606;
    margin-bottom: 1.5rem;
}

.story-text p {
    color: #5C4A3E;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

.story-full {
    display: none;
}

.story-full.open {
    display: block;
}

.story-text .story-closing {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-style: italic;
    color: #950606;
    margin-top: 1.5rem;
}

.story-text .welcome {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #2A1810;
    margin-top: 1rem;
}

.story-image {
    height: 100%;
    min-height: 560px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
    display: block;
    transition: transform 1.2s ease;
}

.story-image:hover img {
    transform: scale(1.03);
}

/* ---------- VALUES SECTION ---------- */
.values-section {
    padding: 80px 0;
    background: #FCF9F4;
}

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

.values-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.values-content p {
    color: #5C4A3E;
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
}

.values-content .values-list {
    list-style: none;
    padding: 0;
}

.values-content .values-list li {
    padding: 8px 0;
    font-size: 1rem;
    color: #5C4A3E;
    border-bottom: 1px solid rgba(139, 26, 26, 0.06);
    display: flex;
    align-items: center;
    gap: 12px;
}

.values-content .values-list li::before {
    content: '✦';
    color: #CC9A3D;
    font-size: 0.8rem;
}

.values-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border: 1px solid #CC9A3D;
}

/* ---------- PARENTS ---------- */
.parents-section {
    padding: 90px 0;
    background: #f8f4ed;
    text-align: center;
}

.parents-section .section-label,
.parents-section h2 {
    text-align: center;
}

.parents-section .gold-divider.centered {
    margin: 1.2rem auto 3rem;
}

.parents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.parent-card .photo-ring {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 1.5px solid #950606;
    padding: 8px;
    margin: 0 auto 1.2rem;
}

.parent-card .photo-ring img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.parent-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.2rem;
}

.parent-card .role {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #CC9A3D;
    margin-bottom: 0.4rem;
}

.parent-card .trait {
    font-size: 0.85rem;
    color: #5C4A3E;
}

.parents-note {
    margin-top: 3rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.05rem;
    color: #5C4A3E;
}

.parents-note a {
    color: #950606;
}

/* ---------- GALLERY ---------- */
.gallery-section {
    padding: 90px 0;
    background: #f8f4ed;
    text-align: center;
}

.gallery-section .section-label,
.gallery-section h2 {
    text-align: center;
}

.gallery-section .gold-divider.centered {
    margin: 1.2rem auto 3rem;
}

.gallery-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-strip img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    cursor: pointer;
    transition: transform 0.6s ease;
}

.gallery-strip a:nth-child(odd) img {
    border: 1px solid #CC9A3D;
}

.gallery-strip a:nth-child(even) img {
    border: 1px solid #950606;
}

.gallery-strip img:hover {
    transform: translateY(-4px);
}

.gallery-note {
    margin-top: 2.5rem;
    font-size: 0.8rem;
    color: #9C8A78;
    letter-spacing: 0.05em;
}

/* ---------- PUPPY GRID ---------- */
.puppy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.puppies-section {
    padding: 100px 0;
    background: #f8f4ed;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 3rem;
}

.section-header a {
    color: #950606;
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 1px solid #950606;
    padding-bottom: 4px;
    transition: all 0.5s ease;
}

.section-header a:hover {
    color: #CC9A3D;
    border-color: #CC9A3D;
}

.puppy-card {
    background: #ffffff;
    padding: 20px 20px 30px;
    transition: transform 0.7s ease, box-shadow 0.7s ease;
}

.puppy-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
}

.puppy-card img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border: 1px solid #CC9A3D;
    transition: transform 1.2s ease;
}

.puppy-card:hover img {
    transform: scale(1.03);
}

.puppy-card h3 {
    font-size: 1.6rem;
    margin-top: 1.2rem;
}

.puppy-card .meta {
    font-size: 0.8rem;
    color: #9C8A78;
    letter-spacing: 0.05em;
    margin-top: 0.2rem;
}

.puppy-card .price {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #950606;
    margin-top: 0.5rem;
}

/* ---------- MOMENTS SLIDESHOW ----------
   One big full-width slideshow beneath the hero (the idea taken from the
   reference site) — arrow navigation, dot indicators below, and slides
   that alternate still photo / "in motion" so the row never feels static.
   A slide can hold either an <img> or a real <video autoplay muted loop>
   — just swap the tag in the markup and everything below still works. */
.hero-slideshow {
    position: relative;
    width: 100%;
    height: 640px;
    overflow: hidden;
    background: #140907;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.1s ease;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide img,
.slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 9, 7, 0.08) 0%, rgba(20, 9, 7, 0.05) 45%, rgba(20, 9, 7, 0.55) 100%);
    pointer-events: none;
}

/* "gif/video" slides — a slow, continuous Ken-Burns drift stands in for
   motion where a still photo is used instead of a video file */
.slide.slide-motion img {
    animation: slotDrift 15s ease-in-out infinite;
}

@keyframes slotDrift {
    0% { transform: scale(1.0) translate(0, 0); }
    50% { transform: scale(1.09) translate(-1.5%, -1%); }
    100% { transform: scale(1.0) translate(0, 0); }
}

.slide-motion-badge {
    position: absolute;
    top: 26px;
    left: 26px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 16px;
    background: rgba(20, 9, 7, 0.45);
    border: 1px solid rgba(252, 249, 244, 0.4);
    color: #FCF9F4;
    font-family: 'Inter', sans-serif;
    font-size: 0.64rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.slide-motion-badge .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #E9C77A;
    animation: dotPulse 1.6s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 0.4; transform: scale(0.85); }
    50% { opacity: 1; transform: scale(1.15); }
}

.slide-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(252, 249, 244, 0.55);
    background: rgba(20, 9, 7, 0.35);
    color: #FCF9F4;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.slide-arrow svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
}

.slide-arrow:hover {
    background: #950606;
    border-color: #E9C77A;
    transform: translateY(-50%) scale(1.06);
}

.slide-arrow.prev { left: 24px; }
.slide-arrow.next { right: 24px; }

.slide-dots {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 5;
}

.slide-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border-radius: 50%;
    border: 1px solid rgba(252, 249, 244, 0.75);
    background: rgba(252, 249, 244, 0.25);
    cursor: pointer;
    transition: background 0.35s ease, transform 0.35s ease;
}

.slide-dot.active {
    background: #E9C77A;
    border-color: #E9C77A;
    transform: scale(1.25);
}

@media (prefers-reduced-motion: reduce) {
    .slide.slide-motion img {
        animation: none;
    }
}

/* ---------- TAGLINE BAND ---------- */
.tagline-band {
    padding: 90px 0;
    text-align: center;
    background:  #D4AF37;
}

.tagline-band p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: #D9CBB8;
    margin-bottom: 0.3rem;
}

.tagline-band h2 {
    font-size: 2.6rem;
    color: #FCF9F4;
    font-weight: 500;
}

/* ---------- CONTACT SECTION ---------- */
.contact-section {
    padding: 100px 0;
    background: #FCF9F4;
}

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

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: #5C4A3E;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-details .contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(139, 26, 26, 0.08);
}

.contact-details .contact-item .icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border: 1px solid #CC9A3D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.5s ease, transform 0.5s ease;
}

.contact-details .contact-item .icon svg {
    width: 18px;
    height: 18px;
    stroke: #950606;
    fill: none;
    stroke-width: 1.5;
    transition: stroke 0.4s ease;
}

.contact-details .contact-item:hover .icon {
    background: #950606;
    transform: translateY(-2px);
}

.contact-details .contact-item:hover .icon svg {
    stroke: #FCF9F4;
}

.contact-details .contact-item .text {
    color: #2A1810;
    font-size: 0.95rem;
}

.contact-details .contact-item .text .label {
    display: block;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #9C8A78;
    margin-bottom: 2px;
}

.contact-details .contact-item .text a {
    color: #2A1810;
    text-decoration: none;
    transition: color 0.4s ease;
}

.contact-details .contact-item .text a:hover {
    color: #950606;
}

.contact-seal {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(139, 26, 26, 0.1);
}

.contact-seal .seal-mark {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: contain;
    flex-shrink: 0;
}

.contact-seal .seal-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.15rem;
    color: #5C4A3E;
    line-height: 1.4;
}

.contact-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 2.5rem;
}

.service-chip {
    display: flex;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(139, 26, 26, 0.12);
}

.service-chip .icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #CC9A3D;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-chip .icon svg {
    width: 16px;
    height: 16px;
    stroke: #950606;
    fill: none;
    stroke-width: 1.6;
}

.service-chip h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    font-size: 1.05rem;
    color: #2A1810;
    margin-bottom: 4px;
}

.service-chip p {
    font-size: 0.8rem;
    color: #5C4A3E;
    line-height: 1.5;
}

.contact-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border: 1px solid #950606;
}

/* ---------- FOOTER ---------- */
footer {
    padding: 60px 0 40px;
    border-top: 1px solid rgba(139, 26, 26, 0.06);
    text-align: center;
    font-size: 0.8rem;
    color: #B3A292;
    letter-spacing: 0.05em;
}

footer .footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

footer .footer-links a {
    color: #2A1810;
    text-decoration: none;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.4s ease;
}

footer .footer-links a:hover {
    color: #950606;
}

footer .gold-divider {
    margin: 1.5rem auto;
}

.footer-crest {
    width: 58px;
    height: 58px;
    display: block;
    margin: 0 auto 1.5rem;
}

/* ============================================
   MULTI-PAGE ADDITIONS (applies to all pages)
   ============================================ */

/* ---------- INNER PAGE BANNER ---------- */
.page-banner {
    padding: 70px 0 60px;
    text-align: center;
    border-bottom: 1px solid rgba(139, 26, 26, 0.08);
}

.page-banner .section-label {
    justify-content: center;
    text-align: center;
}

.page-banner h1 {
    font-size: 3.2rem;
    margin-bottom: 0.6rem;
}

.page-banner p {
    max-width: 560px;
    margin: 0 auto;
    color: #5C4A3E;
    font-size: 1.05rem;
}

.page-banner .gold-divider.centered {
    margin: 1.2rem auto 0;
}

/* ---------- CROSS-PAGE CONTENT WRAPPER ---------- */
.page-content {
    padding: 90px 0;
}

.page-content.tint {
    background: #f8f4ed;
}

/* ---------- FORMS ---------- */
.dr-form {
    max-width: 720px;
    margin: 0 auto;
}

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

.form-row.single {
    grid-template-columns: 1fr;
}

.form-field label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: #9C8A78;
    margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid rgba(139, 26, 26, 0.2);
    background: none;
    padding: 10px 2px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #2A1810;
    outline: none;
    transition: border-color 0.4s ease;
}

.form-field textarea {
    resize: vertical;
    min-height: 110px;
    font-family: 'Inter', sans-serif;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: #950606;
}

.checkbox-field label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-transform: none;
    letter-spacing: 0.01em;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #5C4A3E;
    cursor: pointer;
}

.checkbox-field input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 3px;
    accent-color: #950606;
    cursor: pointer;
}

.form-section-title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: #950606;
    margin: 3rem 0 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 26, 26, 0.08);
}

.form-section-title:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.dr-form .submit-row {
    margin-top: 3rem;
    text-align: center;
}

.form-confirmation {
    display: none;
    text-align: center;
    padding: 60px 20px;
}

.form-confirmation.show {
    display: block;
}

.form-confirmation .dr-crest {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
}

.form-confirmation h3 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.form-confirmation p {
    color: #5C4A3E;
    max-width: 420px;
    margin: 0 auto;
}

/* ---------- FULL GALLERY GRID ---------- */
.full-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.gallery-card {
    display: block;
    width: 100%;
    background: #ffffff;
    cursor: pointer;
    border: none;
    padding: 0;
    text-align: left;
    font: inherit;
    color: inherit;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.gallery-card:focus-visible {
    outline: 2px solid #950606;
    outline-offset: 4px;
}

.gallery-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.gallery-card .gallery-card-photo {
    overflow: hidden;
    position: relative;
}

.gallery-card:nth-child(4n+1) .gallery-card-photo,
.gallery-card:nth-child(4n+3) .gallery-card-photo {
    border: 1px solid #CC9A3D;
}

.gallery-card:nth-child(4n+2) .gallery-card-photo,
.gallery-card:nth-child(4n) .gallery-card-photo {
    border: 1px solid #950606;
}

.gallery-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

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

.gallery-card .gallery-card-viewmore {
    position: absolute;
    inset: auto 0 0 0;
    padding: 10px 14px 8px;
    background: linear-gradient(0deg, rgba(20, 10, 6, 0.72), transparent);
    color: #FCF9F4;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-card:hover .gallery-card-viewmore {
    opacity: 1;
    transform: translateY(0);
}

.gallery-card .gallery-card-info {
    padding: 16px 6px 4px;
}

.gallery-card .gallery-card-info h3 {
    font-size: 1.3rem;
    margin-bottom: 2px;
}

.gallery-card .gallery-card-info .meta {
    font-size: 0.78rem;
    color: #9C8A78;
    letter-spacing: 0.03em;
}

/* ---------- DOG PROFILE MODAL ---------- */
.dog-modal {
    position: fixed;
    inset: 0;
    z-index: 250;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.dog-modal.open {
    display: flex;
}

.dog-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 12, 8, 0.78);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.dog-modal-panel {
    position: relative;
    background: #FCF9F4;
    max-width: 780px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    z-index: 1;
    opacity: 0;
    transform: translateY(18px) scale(0.98);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.dog-modal.open .dog-modal-panel {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.dog-modal-photo {
    height: 100%;
    min-height: 320px;
    overflow: hidden;
}

.dog-modal-photo img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
}

.dog-modal-body {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
}

.dog-modal-body .role-tag {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #CC9A3D;
    margin-bottom: 0.4rem;
}

.dog-modal-body h3 {
    font-size: 2.1rem;
    margin-bottom: 0.3rem;
}

.dog-modal-body .status-line {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.05rem;
    color: #950606;
    margin-bottom: 1.5rem;
    padding-bottom: 1.4rem;
    border-bottom: 1px solid rgba(139, 26, 26, 0.1);
}

.dog-modal-specs {
    list-style: none;
}

.dog-modal-specs li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(139, 26, 26, 0.06);
    font-size: 0.92rem;
}

.dog-modal-specs li span:first-child {
    color: #9C8A78;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.68rem;
    flex-shrink: 0;
    padding-top: 2px;
}

.dog-modal-specs li span:last-child {
    color: #2A1810;
    text-align: right;
}

.dog-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(252, 249, 244, 0.6);
    background: rgba(20, 12, 8, 0.5);
    color: #FCF9F4;
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.4s ease;
}

.dog-modal-close:hover {
    background: #950606;
}

/* ---------- EXPORT SERVICES STEP LIST ---------- */
.export-steps {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.export-step {
    display: flex;
    gap: 28px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(139, 26, 26, 0.08);
}

.export-step:last-child {
    border-bottom: none;
}

.export-step .num {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #CC9A3D;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: #950606;
}

.export-step h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.export-step p {
    color: #5C4A3E;
    font-size: 0.95rem;
}

/* ---------- FULL PARENT PROFILE CARDS ---------- */
.parent-profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.parent-profile-card {
    background: #ffffff;
    padding: 40px;
}

.parent-profile-card .photo-ring {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 1.5px solid #950606;
    padding: 8px;
    margin-bottom: 1.5rem;
}

.parent-profile-card .photo-ring img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.parent-profile-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
}

.parent-profile-card .role {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #CC9A3D;
    margin-bottom: 1.2rem;
}

.parent-spec-list {
    list-style: none;
}

.parent-spec-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(139, 26, 26, 0.06);
    font-size: 0.9rem;
}

.parent-spec-list li span:first-child {
    color: #9C8A78;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.7rem;
}

.parent-spec-list li span:last-child {
    color: #2A1810;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .values-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .story-bleed-grid {
        grid-template-columns: 1fr;
    }
    .story-text-wrap {
        padding: 50px 60px 0;
    }
    .story-text {
        max-width: none;
    }
    .story-image,
    .story-image img {
        min-height: 380px;
    }
    .puppy-grid {
        grid-template-columns: 1fr 1fr;
    }
    .parents-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 24px;
    }
    .gallery-strip {
        grid-template-columns: repeat(3, 1fr);
    }
    .hero {
        padding: 120px 0 100px;
        min-height: 680px;
    }
    .hero-content h1 {
        font-size: 3.6rem;
    }
    .hero-slideshow {
        height: 520px;
    }
    .parent-profile-grid {
        grid-template-columns: 1fr;
    }
    .dog-modal-panel {
        grid-template-columns: 1fr;
        max-height: 92vh;
    }
    .dog-modal-photo {
        min-height: 260px;
    }
    .dog-modal-photo img {
        min-height: 260px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    .nav-links {
        padding: 32px;
    }
    .nav-apply {
        display: none;
    }
    .hero {
        padding: 100px 0 80px;
        min-height: 600px;
        background-position: center 4%;
    }
    .hero-content .dr-crest {
        width: 54px;
        height: 54px;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .hero-content .tagline {
        font-size: 1.2rem;
    }
    .puppy-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .parents-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .contact-services {
        grid-template-columns: 1fr;
    }
    .gallery-strip {
        grid-template-columns: 1fr 1fr;
    }
    .story-text h2,
    .values-content h2,
    .contact-info h2,
    .section-header h2 {
        font-size: 2.4rem;
    }
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 320px;
    }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }
    .btn-secondary {
        margin-left: 0;
    }
    .hero-slideshow {
        height: 420px;
    }
    .slide-arrow {
        width: 42px;
        height: 42px;
    }
    .slide-arrow.prev { left: 12px; }
    .slide-arrow.next { right: 12px; }
    .slide-motion-badge {
        top: 16px;
        left: 16px;
        padding: 6px 12px;
        font-size: 0.58rem;
    }
    .story-image,
    .story-image img {
        min-height: 300px;
    }
    .values-image img,
    .contact-image img {
        height: 340px;
    }
    .story-text-wrap {
        padding: 40px 24px 0;
    }
    footer .footer-links {
        gap: 20px;
    }
    .contact-details .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    .pedigree-divider {
        max-width: 260px;
    }
    .values-grid {
        gap: 30px;
    }
    .contact-grid {
        gap: 30px;
    }
    .story-text .story-closing {
        font-size: 1.4rem;
    }
    .hero-slideshow {
        height: 380px;
    }
    .tagline-band {
        padding: 60px 0;
    }
    .tagline-band h2 {
        font-size: 1.9rem;
    }
    .tagline-band p {
        font-size: 1.05rem;
    }
    .page-banner h1 {
        font-size: 2.3rem;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .full-gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }
    .gallery-card .gallery-card-viewmore {
        opacity: 1;
        transform: translateY(0);
    }
    .dog-modal {
        padding: 0;
        align-items: flex-end;
    }
    .dog-modal-panel {
        max-height: 92vh;
        max-width: none;
    }
    .dog-modal-body {
        padding: 30px 24px 40px;
    }
    .dog-modal-body h3 {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .hero {
        padding: 80px 0 60px;
        min-height: 540px;
        background-position: center 2%;
    }
    .hero-content .dr-crest {
        width: 46px;
        height: 46px;
    }
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content .tagline {
        font-size: 1rem;
    }
    .story-section,
    .puppies-section,
    .values-section,
    .contact-section {
        padding: 60px 0;
    }
    .story-text h2,
    .values-content h2,
    .contact-info h2,
    .section-header h2 {
        font-size: 2rem;
    }
    .story-image img,
    .values-image img,
    .contact-image img {
        height: 260px;
    }
    .puppy-card img {
        height: 240px;
    }
    .btn-primary,
    .btn-secondary {
        padding: 14px 32px;
        font-size: 0.7rem;
        display: block;
        width: 100%;
    }
    .btn-secondary {
        margin-left: 0;
    }
    .btn-hero-cta {
        padding: 18px 32px;
        font-size: 0.76rem;
    }
    .hero-slideshow {
        height: 320px;
    }
    .slide-arrow {
        width: 36px;
        height: 36px;
    }
    .slide-arrow svg {
        width: 16px;
        height: 16px;
    }
    .slide-dots {
        bottom: 16px;
        gap: 9px;
    }
    .slide-dot {
        width: 7px;
        height: 7px;
    }
    .tagline-band h2 {
        font-size: 1.5rem;
    }
    .logo {
        font-size: 1.4rem;
    }
    .logo .dr-crest {
        width: 36px;
        height: 36px;
    }
    .menu-toggle span {
        width: 24px;
        height: 2px;
    }
    .nav-links {
        padding: 90px 24px 30px;
    }
    .nav-links a {
        font-size: 1.2rem;
    }
    .values-content .values-list li {
        font-size: 0.9rem;
    }
    .story-text .story-closing {
        font-size: 1.2rem;
    }
    .story-text .welcome {
        font-size: 1.2rem;
    }
    .full-gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-card img {
        height: 300px;
    }
    .dog-modal-specs li {
        flex-direction: column;
        gap: 2px;
    }
    .dog-modal-specs li span:last-child {
        text-align: left;
    }
}