/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Coffee Theme - Warm, rich espresso tones */
    --primary: #6F4E37;           /* Rich coffee brown */
    --primary-dark: #4A3728;      /* Dark roast */
    --accent: #C4A77D;            /* Caramel/latte */
    --ink: #2C1810;               /* Dark espresso text */
    --muted: #6B5B4F;             /* Medium roast */
    /* Theme tokens for easy retheming */
    --cream: #FDF8F3;             /* Light cream */
    --soft-cream: #FAF5EF;        /* Soft latte foam */
    --card: #ffffff;
    --surface: #ffffff;
    --surface-soft: #FDF8F3;
    --surface-tint: #F5EBE0;      /* Warm beige */
    --surface-muted: #FAF5EF;
    --border: #E8DDD4;            /* Light mocha border */
    --border-strong: #3D2B1F;     /* Dark coffee border */
    --text-subtle: #8B7355;       /* Muted coffee */
    --text-highlight: #FDF8F3;
    --accent-soft: #E8DDD4;       /* Soft mocha */
    --accent-rose: #F5EBE0;
    --gradient-rose: #F5EBE0;
    --gradient-gold: #EDE0D4;     /* Warm cream gradient */
    --gradient-warm-start: #FDF8F3;
    --gradient-warm-mid: #F5EBE0;
    --bg-warm: #FDF8F3;
    --table-header: #F5EBE0;
    --table-total: #FDF8F3;
    --shadow: 0 12px 35px rgba(44, 24, 16, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--ink);
    background: radial-gradient(circle at 20% 20%, var(--gradient-rose) 0, var(--gradient-rose) 20%, transparent 40%),
                radial-gradient(circle at 80% 10%, var(--gradient-gold) 0, var(--gradient-gold) 18%, transparent 40%),
                linear-gradient(to bottom, var(--cream), #ffffff);
}

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

.container-wide {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Top Bar with Discount */
.top-bar {
    background: var(--primary);
    color: white;
    padding: 8px 0;
    text-align: center;
    position: relative;
}

.top-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
}

.discount-icon {
    font-size: 16px;
}

.discount-text {
    color: var(--text-highlight);
}

.discount-close {
    position: absolute;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.discount-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e2e8f0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    gap: 12px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.logo {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.brand-name {
    font-weight: bold;
    font-size: 20px;
    color: var(--ink);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 52px;
    height: 52px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    padding: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.mobile-menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--ink);
    border-radius: 4px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 16px 20px 20px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #e2e8f0;
    width: 100%;
}

.mobile-menu a {
    color: var(--ink);
    text-decoration: none;
    font-weight: 600;
    padding: 8px 0;
}

.mobile-submenu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 8px 16px;
    padding-top: 4px;
}

.nav-link {
    text-decoration: none;
    color: #6b6d77;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.nav-link:hover {
    color: var(--primary);
}

.cta-button {
    background: var(--primary);
    color: #fff7e8;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-btn {
    color: #6b6d77;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: -0.01em;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-btn {
    color: var(--primary);
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 224px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 4px;
    z-index: 1000;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 8px 12px;
    color: #1e293b;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background: #f1f5f9;
}

/* Hero Section */
.hero {
    padding: 100px 20px 90px;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 20px 0 0;
    background: linear-gradient(135deg, var(--gradient-warm-start) 0%, var(--gradient-warm-mid) 60%, rgba(255, 255, 255, 0));
    z-index: -1;
    border-radius: 32px;
}

.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 48px;
    align-items: center;
}

.hero-copy {
    max-width: 640px;
}

.badge {
    display: inline-block;
    background: #e0f7fa;
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.hero-title {
    font-size: 52px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 24px;
    line-height: 1.2;
}

.highlight {
    color: var(--primary);
}

.hero-description {
    font-size: 20px;
    color: var(--muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

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

.btn-primary {
    background: var(--primary);
    color: #fff7e8;
    border: none;
    padding: 16px 32px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--surface-soft);
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 16px 32px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary);
    color: #fff7e8;
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-main-image {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    overflow: hidden;
    border: 12px solid var(--accent-soft);
    box-shadow: var(--shadow);
    background: linear-gradient(145deg, var(--gradient-gold), var(--accent-rose));
    position: relative;
    max-width: 90vw;
    max-height: 90vw;
}

.hero-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid var(--accent-soft);
    box-shadow: var(--shadow);
    background: #fff6e6;
}

.hero-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-circle.top {
    width: 150px;
    height: 150px;
    top: -28px;
    right: 24px;
}

.hero-circle.bottom {
    width: 140px;
    height: 140px;
    bottom: -22px;
    left: 10px;
}

/* Dedicated Available Puppies Hero */
.sub-hero {
    padding: 80px 20px 40px;
    background: linear-gradient(135deg, var(--gradient-warm-start) 0%, var(--gradient-warm-mid) 50%, #ffffff 100%);
}

.sub-hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    align-items: center;
}

.sub-hero-title {
    font-size: 44px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 16px;
}

.sub-hero-lead {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.sub-hero-panel {
    display: flex;
    justify-content: flex-end;
}

.sub-hero-highlight {
    background: white;
    border-radius: 14px;
    padding: 20px 22px;
    box-shadow: var(--shadow);
    max-width: 420px;
    border: 1px solid var(--border);
}

.pill {
    display: inline-flex;
    background: #e0f7fa;
    color: var(--primary);
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 700;
    margin-bottom: 12px;
}

.mini-perks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 6px;
    margin-top: 12px;
}

.mini-perks span {
    color: var(--muted);
    font-weight: 600;
}

/* About Page */
.about-page {
    padding: 40px 20px 90px;
    background: linear-gradient(180deg, var(--bg-warm) 0%, #ffffff 55%);
}

.about-story h2 {
    font-size: 32px;
    color: var(--ink);
    margin-bottom: 12px;
}

.about-story p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 14px;
}

.about-pillars {
    margin-top: 32px;
}

.pillars-header h3 {
    font-size: 26px;
    color: var(--ink);
    margin-bottom: 6px;
}

.pillars-header p {
    color: var(--muted);
    margin-bottom: 16px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}

.pillar-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
    box-shadow: var(--shadow);
}

.pillar-card h4 {
    font-size: 18px;
    color: var(--ink);
    margin-bottom: 6px;
}

.pillar-card p {
    color: var(--muted);
    line-height: 1.6;
    font-size: 14px;
}

.about-cta {
    margin-top: 36px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px 22px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.about-cta h3 {
    color: var(--ink);
    margin-bottom: 4px;
}

.about-cta p {
    color: var(--muted);
}

.about-cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.about-image-block {
    margin: 26px 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.about-image-block img {
    width: 100%;
    display: block;
    object-fit: cover;
    height: clamp(260px, 50vw, 420px);
}

.about-image-caption {
    padding: 10px 14px;
    color: var(--muted);
    background: white;
}

.about-story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    align-items: start;
    margin-bottom: 12px;
}

/* Contact Page */
.contact-page {
    padding: 40px 20px 90px;
    background: linear-gradient(180deg, var(--bg-warm) 0%, #ffffff 55%);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    align-items: start;
}

.contact-page-copy h1 {
    font-size: 34px;
    color: var(--ink);
    margin: 8px 0;
}

.contact-page-copy p {
    color: var(--muted);
}

.contact-card {
    margin-top: 16px;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border);
    padding: 16px;
    box-shadow: var(--shadow);
}

.contact-label {
    font-weight: 600;
    color: var(--ink);
    margin-top: 6px;
}

.contact-value {
    color: var(--muted);
}

.contact-form-page {
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    color: var(--ink);
    font-weight: 600;
    font-size: 14px;
}

.field input,
.field textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-size: 16px;
    transition: border-color 0.2s ease;
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.puppy-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    color: var(--muted);
    font-weight: 600;
}

.puppy-checkboxes label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.full-width {
    width: 100%;
    text-align: center;
}

/* Reviews Page */
.reviews-hero {
    padding: 80px 20px 40px;
    background: linear-gradient(135deg, var(--gradient-warm-start) 0%, var(--gradient-warm-mid) 50%, #ffffff 100%);
}

.reviews-hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    align-items: center;
}

.reviews-title {
    font-size: 42px;
    color: var(--ink);
    margin: 10px 0;
}

.reviews-lead {
    color: var(--muted);
    line-height: 1.6;
}

.reviews-logo-wrap {
    display: flex;
    justify-content: flex-end;
}

.reviews-badge {
    max-width: 220px;
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.reviews-page {
    padding: 30px 20px 90px;
    background: linear-gradient(180deg, var(--bg-warm) 0%, #ffffff 55%);
}

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

.review-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 16px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.review-header {
    display: flex;
    gap: 12px;
    align-items: center;
}

.avatar {
    width: 48px;
    height: 48px;
    background: #e7ecf3;
    color: var(--ink);
    font-weight: 800;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.review-name {
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 2px;
}

.review-role {
    color: #0f9f6e;
    font-weight: 700;
    font-size: 13px;
}

.review-stars {
    color: #f5b301;
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-stars .score {
    color: #6b7280;
    font-weight: 700;
}

.review-body {
    background: #f8f9fb;
    border-radius: 10px;
    padding: 12px;
    color: var(--ink);
    line-height: 1.6;
    font-size: 14px;
}

.review-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 8px;
    border-top: 1px solid var(--border);
}

.review-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.review-link {
    color: var(--ink);
    font-weight: 700;
    text-decoration: underline;
}

/* Info Pages */
.info-page {
    padding: 60px 20px 90px;
    background: linear-gradient(180deg, var(--bg-warm) 0%, #ffffff 55%);
}

.info-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 18px;
    display: grid;
    gap: 14px;
}

.info-card h1 {
    font-size: 32px;
    color: var(--ink);
}

.info-card h2 {
    font-size: 20px;
    color: var(--ink);
    margin-top: 6px;
}

.info-card h3 {
    font-size: 16px;
    color: var(--ink);
    margin-bottom: 6px;
}

.info-card p,
.info-card li {
    color: var(--muted);
    line-height: 1.7;
}

.info-card ul {
    padding-left: 18px;
    display: grid;
    gap: 6px;
}

.info-lede {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.75;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}

.info-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.stat-card {
    background: #f0fdfa;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px;
}

.stat-label {
    font-size: 11px;
    letter-spacing: 0.08em;
    color: #8a8c98;
    text-transform: uppercase;
}

.stat-value {
    font-weight: 700;
    color: var(--ink);
    font-size: 16px;
    margin-top: 6px;
}

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

.checklist li {
    position: relative;
    padding-left: 22px;
    color: var(--muted);
    line-height: 1.6;
}

.checklist li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: 700;
}

.note-box {
    background: #f8f9fb;
    border: 1px dashed #d6dde7;
    border-radius: 10px;
    padding: 14px;
    color: var(--muted);
    line-height: 1.6;
}

.step-list {
    list-style: none;
    padding-left: 0;
    display: grid;
    gap: 10px;
}

.step-list li {
    display: grid;
    gap: 4px;
}

.step-title {
    font-weight: 700;
    color: var(--ink);
    font-size: 15px;
}

.pill-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e9f7ff;
    color: #0f6cc7;
    padding: 6px 12px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 13px;
}
/* Features Section */
.features {
    padding: 64px 20px;
    background: #f0fdfa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.feature-card {
    text-align: center;
    padding: 24px;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
}

.feature-card p {
    color: #64748b;
    font-size: 14px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 20px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Puppies Section */
.puppies {
    padding: 100px 20px;
    background: linear-gradient(180deg, var(--bg-warm) 0%, #ffffff 55%);
}

.puppy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

.puppy-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.puppy-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.puppy-photo {
    position: relative;
    height: clamp(320px, 40vw, 420px);
    overflow: hidden;
    background: var(--surface-tint);
}

.puppy-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.status-pill {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(8, 145, 178, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(6px);
}

.puppy-body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.puppy-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.puppy-label {
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 12px;
    color: #7a7c86;
    margin-bottom: 4px;
}

.puppy-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--ink);
}

.price-tag {
    background: #e0f7fa;
    color: var(--primary);
    padding: 8px 12px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
}

.puppy-meta {
    color: #7a7c86;
    font-size: 14px;
}

.puppy-line {
    color: var(--ink);
    font-weight: 500;
}

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

.puppy-perks li {
    position: relative;
    padding-left: 28px;
    color: var(--muted);
    font-weight: 500;
}

.puppy-perks li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #10b981;
    font-weight: 800;
}

.puppy-actions {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.puppy-actions .btn-primary,
.puppy-actions .btn-secondary {
    flex: 1;
    text-align: center;
    text-decoration: none;
}

.text-mobile {
    display: none;
}

.btn-secondary.text-mobile {
    background: var(--accent);
    color: var(--ink);
    border-color: var(--accent);
    font-weight: 700;
    justify-content: center;
    align-items: center;
}

/* Dedicated Available Puppies Page Layout */
.puppy-page {
    padding: 40px 20px 90px;
    background: linear-gradient(180deg, var(--bg-warm) 0%, #ffffff 55%);
}

.puppy-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(620px, 1fr));
    gap: 28px;
}

.puppy-detail-card {
    display: grid;
    grid-template-columns: minmax(300px, 0.95fr) 1.05fr;
    gap: 22px;
    background: white;
    border-radius: 14px;
    padding: 18px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    align-items: stretch;
}

.puppy-detail-photo {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: clamp(380px, 42vh, 540px);
    background: var(--surface-tint);
}

.puppy-detail-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.puppy-detail-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quick-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
    color: #7a7c86;
    font-weight: 600;
}

.puppy-desc {
    color: var(--muted);
    line-height: 1.6;
}

.puppy-info {
    padding: 80px 20px;
    background: var(--surface-soft);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
    align-items: start;
}

.info-panel {
    background: white;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    border-radius: 14px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-panel h2,
.info-panel h3 {
    font-size: 30px;
}

.info-lead {
    color: #667085;
}

.table-wrap {
    overflow-x: auto;
}

.expense-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    background: var(--surface-muted);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.expense-table th,
.expense-table td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
    text-align: left;
}

.expense-table th {
    background: var(--table-header);
    font-weight: 700;
}

.expense-table tr:last-child td {
    border-bottom: none;
}

.total-row td {
    font-weight: 800;
    color: var(--primary);
    background: var(--gradient-warm-mid);
}

.info-notes {
    list-style: disc;
    padding-left: 18px;
    color: #6b7280;
    display: grid;
    gap: 6px;
}

.faq-panel {
    background: linear-gradient(135deg, var(--bg-warm), #ffffff);
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 6px;
}

.faq-item p {
    color: #64748b;
    line-height: 1.6;
}
}

/* About Section */
.about {
    padding: 80px 20px;
    background: white;
}

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

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 24px;
}

.about-paragraphs p {
    color: #64748b;
    margin-bottom: 16px;
    line-height: 1.6;
}

.certifications {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 14px;
}

.check-icon {
    color: #10b981;
    font-weight: bold;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-width: 520px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.18);
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 128px;
}

/* Books Section */
.books {
    padding: 80px 20px;
}

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

.book-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.book-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.book-image {
    height: 256px;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 96px;
}

.book-info {
    padding: 24px;
}

.book-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 4px;
}

.book-subtitle {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 16px;
}

.book-description {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.book-btn {
    width: 100%;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 12px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.book-btn:hover {
    background: var(--primary);
    color: #fff7e8;
}

/* Blog Section */
.blog {
    padding: 80px 20px;
    background: #f0fdfa;
}

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

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.blog-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-content {
    padding: 24px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 500;
}

.blog-date {
    background: #e0f7fa;
    color: var(--primary);
    padding: 4px 8px;
    border-radius: 4px;
}

.blog-author {
    color: #64748b;
}

.blog-comments {
    color: #64748b;
}

.blog-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-excerpt {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: var(--primary-dark);
}

.blog-read-more::after {
    content: ' →';
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.blog-read-more:hover::after {
    transform: translateX(4px);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 20px;
}

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

.testimonial-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stars {
    font-size: 20px;
    margin-bottom: 16px;
}

.testimonial-text {
    color: #64748b;
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: #e2e8f0;
    border-radius: 50%;
}

.author-name {
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 2px;
}

.author-title {
    color: #64748b;
    font-size: 14px;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-form {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-helper {
    color: var(--text-subtle);
    font-size: 14px;
    margin-top: 4px;
}

.submit-btn {
    width: 100%;
    background: var(--primary);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background: var(--primary-dark);
}

.form-message {
    margin-top: 16px;
    padding: 12px;
    border-radius: 6px;
    display: none;
}

.form-message.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.form-message.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 16px;
}

/* Agreements & Policies */
.agreement-page {
    padding: 70px 20px 90px;
    background: linear-gradient(180deg, var(--bg-warm) 0%, #ffffff 55%);
}

.agreement-header {
    display: grid;
    gap: 12px;
    margin-bottom: 18px;
}

.agreement-title {
    font-size: 32px;
    color: var(--ink);
}

.agreement-lede {
    color: var(--muted);
    line-height: 1.7;
    max-width: 880px;
}

.agreement-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: var(--shadow);
    padding: 20px;
    display: grid;
    gap: 16px;
}

.agreement-form {
    display: grid;
    gap: 16px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 12px;
}

.input-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #d7dbe4;
    border-radius: 8px;
    font-size: 15px;
    color: var(--ink);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.input-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 105, 135, 0.15);
}

.option-group {
    display: grid;
    gap: 10px;
}

.option-inline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px 16px;
}

.option-inline label {
    display: flex;
    gap: 8px;
    align-items: center;
    color: var(--muted);
    cursor: pointer;
    font-size: 14px;
}

.option-inline input {
    width: 16px;
    height: 16px;
}

.agreement-divider {
    height: 1px;
    background: #f1f5f9;
    margin: 4px 0;
}

.signature-box {
    border: 1px dashed #cbd5e1;
    border-radius: 10px;
    padding: 14px;
    background: #f8fafc;
}

.signature-line {
    width: 100%;
    padding: 12px;
    border: 1px solid #d7dbe4;
    border-radius: 8px;
    font-size: 15px;
}

.legal-list {
    display: grid;
    gap: 10px;
    color: var(--muted);
    line-height: 1.6;
}

.agreement-terms {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--muted);
}

.agreement-terms input {
    margin-top: 3px;
}

.agreement-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.form-status {
    margin-top: 12px;
    display: none;
}

.form-status.success {
    display: block;
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
    padding: 12px;
    border-radius: 6px;
}

.form-status.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
    padding: 12px;
    border-radius: 6px;
}

.visit-description {
    color: #64748b;
    margin-bottom: 32px;
    line-height: 1.6;
}

.contact-details {
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
}

.contact-icon {
    font-size: 20px;
    margin-top: 2px;
}

.contact-label {
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 2px;
}

.contact-value {
    color: #64748b;
    font-size: 14px;
}

.response-promise {
    background: #f8fafc;
    padding: 24px;
    border-radius: 8px;
}

.response-promise h4 {
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 8px;
}

.response-promise p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1f2030 0%, #1a0f1d 55%, #2a0c18 100%);
    color: white;
    padding: 48px 20px 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer-column h4 {
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: var(--text-subtle);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-brand .logo {
    background: white;
    color: var(--primary);
}

.footer-brand .brand-name {
    color: white;
}

.footer-description {
    color: var(--text-subtle);
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid var(--border-strong);
    padding-top: 32px;
    text-align: center;
    color: var(--text-subtle);
    font-size: 14px;
}

.footer-bottom p {
    margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
        margin-left: auto;
    }

    .mobile-menu {
        display: none;
    }

    .mobile-menu.active {
        display: flex;
    }
    
    .mobile-submenu {
        grid-template-columns: 1fr;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-copy {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }

    .puppy-grid {
        grid-template-columns: 1fr;
    }

    .puppy-actions {
        flex-direction: column;
    }

    .text-mobile {
        display: inline-flex;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 18px;
    }

    .hero-visual {
        min-height: 300px;
    }

    .hero-main-image {
        width: 260px;
        height: 260px;
    }

    .hero-circle.top {
        width: 120px;
        height: 120px;
        top: -20px;
        right: 12px;
    }

    .hero-circle.bottom {
        width: 110px;
        height: 110px;
        bottom: -18px;
        left: 6px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .certifications {
        grid-template-columns: 1fr;
    }
    
    .features-grid,
    .puppies-grid,
    .books-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .sub-hero-grid {
        grid-template-columns: 1fr;
    }

    .sub-hero-panel {
        justify-content: flex-start;
    }

    .puppy-page-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .puppy-detail-card {
        grid-template-columns: 1fr;
    }

    .puppy-photo {
        height: clamp(340px, 55vw, 420px);
    }

    .puppy-detail-photo {
        height: clamp(340px, 55vw, 460px);
    }
}

@media (max-width: 1024px) {
    .container-wide {
        padding: 0 20px;
    }

    .puppy-detail-card {
        grid-template-columns: 1fr;
    }

    .puppy-detail-photo {
        height: clamp(340px, 50vw, 480px);
    }

    .info-panel h2,
    .info-panel h3 {
        font-size: 26px;
    }

    .hero-main-image {
        width: 280px;
        height: 280px;
    }

    .hero-circle.top {
        width: 130px;
        height: 130px;
    }

    .hero-circle.bottom {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .container-wide {
        padding: 0 16px;
    }
    
    .hero {
        padding: 60px 16px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .about-text h2 {
        font-size: 28px;
    }
    
    .hero-title {
        font-size: 32px;
    }

    .hero-visual {
        min-height: 240px;
    }

    .hero-main-image {
        width: 220px;
        height: 220px;
        border-width: 10px;
    }

    .hero-circle.top {
        width: 100px;
        height: 100px;
        top: -12px;
        right: 8px;
        border-width: 6px;
    }

    .hero-circle.bottom {
        width: 92px;
        height: 92px;
        bottom: -12px;
        left: 4px;
        border-width: 6px;
    }

    .about-cta {
        flex-direction: column;
        align-items: flex-start;
    }

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