/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --rose: #c4897b;
    --rose-deep: #a86d62;
    --rose-light: #d9a89d;
    --blush: #f3e0da;
    --cream: #fdf8f5;
    --warm-white: #fffaf7;
    --charcoal: #3a2e2a;
    --charcoal-light: #5c4d47;
    --gold: #c9a96e;
    --shadow-soft: 0 2px 20px rgba(58, 46, 42, 0.06);
    --shadow-card: 0 4px 30px rgba(58, 46, 42, 0.08);
    --shadow-hover: 0 8px 40px rgba(58, 46, 42, 0.12);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--charcoal);
    background: var(--warm-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Lobster', cursive;
    font-weight: 400;
    line-height: 1.2;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===== PAW PRINT SVG ===== */
.paw-print {
    position: absolute;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
    background: transparent;
}

.nav.scrolled {
    background: rgba(255, 250, 247, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 1px 20px rgba(58, 46, 42, 0.06);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.nav-logo img {
    height: 62px;
    width: auto;
    transition: height var(--transition);
}

.nav.scrolled .nav-logo img {
    height: 50px;
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal);
    position: relative;
    letter-spacing: 0.02em;
    transition: color var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--rose);
    border-radius: 2px;
    transition: width var(--transition);
}

.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--rose-deep); }

.nav-cta {
    background: var(--rose);
    color: white !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    transition: all var(--transition);
    box-shadow: 0 2px 12px rgba(196, 137, 123, 0.3);
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
    background: var(--rose-deep);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(196, 137, 123, 0.4);
}

/* Mobile hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: all var(--transition);
}

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

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

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

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, var(--warm-white) 0%, var(--blush) 40%, var(--rose-light) 100%);
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.07;
}

.hero-circle-1 {
    width: 600px;
    height: 600px;
    background: var(--rose);
    top: -200px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.hero-circle-2 {
    width: 400px;
    height: 400px;
    background: var(--gold);
    bottom: -150px;
    left: -100px;
    animation: floatSlow 10s ease-in-out infinite;
}

.hero-circle-3 {
    width: 200px;
    height: 200px;
    background: var(--rose-deep);
    top: 30%;
    right: 20%;
    animation: float 12s ease-in-out infinite;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text { animation: fadeUp 1s ease both; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--rose-deep);
    margin-bottom: 24px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    fill: var(--rose);
}

.hero h1 {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    color: var(--charcoal);
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero h1 span {
    color: var(--rose);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--charcoal-light);
    max-width: 480px;
    margin-bottom: 36px;
    font-weight: 300;
    line-height: 1.8;
}

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

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--rose);
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    box-shadow: 0 4px 20px rgba(196, 137, 123, 0.35);
    letter-spacing: 0.02em;
}

.btn-primary:hover {
    background: var(--rose-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(196, 137, 123, 0.45);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--charcoal);
    padding: 16px 36px;
    border-radius: 50px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid var(--rose-light);
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: 0.02em;
}

.btn-secondary:hover {
    background: var(--blush);
    border-color: var(--rose);
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    animation: scaleIn 1s ease 0.3s both;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(58, 46, 42, 0.15);
    aspect-ratio: 4/3;
    background: var(--blush);
}

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

.hero-float-card {
    position: absolute;
    background: white;
    border-radius: var(--radius);
    padding: 16px 20px;
    box-shadow: var(--shadow-card);
    animation: floatSlow 6s ease-in-out infinite;
}

.hero-float-card-1 {
    bottom: -20px;
    left: -30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-float-card-1 .icon-circle {
    width: 44px;
    height: 44px;
    background: var(--blush);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-float-card-1 .icon-circle svg {
    width: 22px;
    height: 22px;
    fill: var(--rose);
}

.hero-float-card-1 .card-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--charcoal);
}

.hero-float-card-1 .card-text small {
    display: block;
    font-weight: 400;
    color: var(--charcoal-light);
    font-size: 0.72rem;
}

.hero-float-card-2 {
    top: 20px;
    right: -20px;
    animation-delay: 1s;
}

.hero-float-card-2 .stars {
    display: flex;
    gap: 2px;
    margin-bottom: 4px;
}

.hero-float-card-2 .stars svg {
    width: 14px;
    height: 14px;
    fill: var(--gold);
}

.hero-float-card-2 span {
    font-size: 0.75rem;
    color: var(--charcoal-light);
    font-weight: 500;
}

/* ===== HERO CAROUSEL ===== */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
}

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

.hero-carousel-wrapper {
    position: relative;
}

.hero-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--rose-light);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.hero-dot:hover {
    border-color: var(--rose);
}

.hero-dot.active {
    background: var(--rose);
    border-color: var(--rose);
}

/* ===== HERO FULL-WIDTH LAYOUT ===== */
.hero--fullwidth .hero-bg-shapes {
    display: none;
}

.hero--fullwidth .hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero--fullwidth .hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to right, rgba(58, 46, 42, 0.75) 0%, rgba(58, 46, 42, 0.2) 100%);
}

.hero--fullwidth {
    background: var(--charcoal);
}

.hero--fullwidth .hero-content {
    z-index: 2;
    grid-template-columns: 1fr;
    max-width: 800px;
    position: relative;
}

.hero--fullwidth .hero h1 {
    color: white;
}

.hero--fullwidth .hero h1 span {
    color: var(--rose-light);
}

.hero--fullwidth .hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.hero--fullwidth .hero-badge {
    background: rgba(255, 255, 255, 0.15);
    color: var(--rose-light);
}

.hero--fullwidth .btn-secondary {
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.hero--fullwidth .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
}

.hero--fullwidth .hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.hero--fullwidth .hero-dot {
    border-color: rgba(255, 255, 255, 0.5);
}

.hero--fullwidth .hero-dot:hover {
    border-color: white;
}

.hero--fullwidth .hero-dot.active {
    background: white;
    border-color: white;
}

@media (max-width: 1024px) {
    .hero--fullwidth .hero-content {
        text-align: center;
    }

    .hero--fullwidth .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero--fullwidth .hero-overlay {
        background: linear-gradient(to bottom, rgba(58, 46, 42, 0.7) 0%, rgba(58, 46, 42, 0.3) 100%);
    }
}

@media (max-width: 480px) {
    .hero-dot {
        width: 8px;
        height: 8px;
    }

    .hero-dots {
        gap: 6px;
    }
}

/* ===== TRUST BAR ===== */
.trust-bar {
    padding: 40px 0;
    background: white;
    border-top: 1px solid rgba(58, 46, 42, 0.04);
    border-bottom: 1px solid rgba(58, 46, 42, 0.04);
}

.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-bar span {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--charcoal-light);
    font-weight: 600;
    opacity: 0.5;
}

.trust-bar img {
    height: 48px;
    width: auto;
    opacity: 0.5;
    transition: opacity var(--transition);
    filter: grayscale(30%);
}

.trust-bar img:hover {
    opacity: 0.8;
    filter: grayscale(0%);
}

/* ===== ABOUT ===== */
.about {
    padding: 120px 0;
    position: relative;
    background: var(--warm-white);
}

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

.about-visual {
    position: relative;
}

.about-image-main {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    aspect-ratio: 3/4;
    background: var(--blush);
}

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

.about-accent-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: white;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-card);
    max-width: 220px;
}

.about-accent-card .number {
    font-family: 'Lobster', cursive;
    font-size: 2.4rem;
    color: var(--rose);
    line-height: 1;
}

.about-accent-card p {
    font-size: 0.82rem;
    color: var(--charcoal-light);
    margin-top: 4px;
    line-height: 1.5;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--rose);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--rose);
    border-radius: 2px;
}

.about-text h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--charcoal);
    margin-bottom: 24px;
}

.about-text p {
    color: var(--charcoal-light);
    margin-bottom: 16px;
    font-size: 1rem;
    font-weight: 300;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.about-feature .feature-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: var(--blush);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-feature .feature-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--rose);
}

.about-feature h4 {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.about-feature p {
    font-size: 0.8rem;
    color: var(--charcoal-light);
    margin-bottom: 0;
    line-height: 1.5;
}

/* ===== SERVICES ===== */
.services {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 16px;
}

.section-header p {
    color: var(--charcoal-light);
    font-weight: 300;
    font-size: 1.05rem;
}

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

.service-card {
    background: white;
    border-radius: var(--radius);
    padding: 36px 30px;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--rose-light), var(--rose));
    opacity: 0;
    transition: opacity var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

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

.service-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--blush);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background var(--transition);
}

.service-card:hover .service-icon {
    background: var(--rose);
}

.service-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--rose);
    transition: fill var(--transition);
}

.service-card:hover .service-icon svg {
    fill: white;
}

.service-card h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card .service-desc {
    font-size: 0.88rem;
    color: var(--charcoal-light);
    margin-bottom: 0;
    line-height: 1.6;
    font-weight: 300;
}

.service-pricing {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.price-tag {
    background: var(--cream);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--charcoal);
    transition: all var(--transition);
}

.service-card:hover .price-tag {
    background: var(--blush);
}

.price-tag.from {
    background: var(--blush);
    color: var(--rose-deep);
}

.service-card:hover .price-tag.from {
    background: var(--rose);
    color: white;
}

.services-note {
    text-align: center;
    margin-top: 48px;
    font-size: 0.9rem;
    color: var(--charcoal-light);
    font-style: italic;
}

/* ===== GALLERY ===== */
.gallery {
    padding: 120px 0;
    background: var(--warm-white);
    position: relative;
    overflow: hidden;
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(58, 46, 42, 0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Span variations for mosaic layout */
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.featured { grid-column: span 2; grid-row: span 2; }

@media (max-width: 1024px) {
    .gallery-mosaic {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 180px;
    }
}

@media (max-width: 768px) {
    .gallery-mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 160px;
        gap: 10px;
    }

    .gallery-item.featured {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-item.tall { grid-row: span 2; }
}

@media (max-width: 480px) {
    .gallery-mosaic {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 140px;
    }
}

/* ===== FOOTER CREDIT ===== */
.footer-credit {
    width: 100%;
    text-align: center;
    font-size: 0.75rem;
    opacity: 0.4;
    margin-top: 4px;
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition);
}

.footer-credit a:hover {
    color: var(--rose-light);
    opacity: 1;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 120px 0;
    background: var(--warm-white);
    position: relative;
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: white;
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow-soft);
    position: relative;
    transition: all var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}

.testimonial-card .quote-mark {
    font-family: 'Lobster', cursive;
    font-size: 4rem;
    color: var(--blush);
    line-height: 1;
    margin-bottom: -10px;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: var(--charcoal-light);
    line-height: 1.75;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 24px;
}

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

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--blush);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-avatar svg {
    width: 20px;
    height: 20px;
    fill: var(--rose);
}

.testimonial-author-info .name {
    font-weight: 600;
    font-size: 0.88rem;
}

.testimonial-author-info .stars {
    display: flex;
    gap: 2px;
}

.testimonial-author-info .stars svg {
    width: 12px;
    height: 12px;
    fill: var(--gold);
}

/* ===== CALLBACK FORM ===== */
.callback {
    padding: 120px 0;
    background: linear-gradient(160deg, var(--cream) 0%, var(--blush) 100%);
    position: relative;
    overflow: hidden;
}

.callback-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: start;
}

.callback-info h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: 20px;
}

.callback-info p {
    color: var(--charcoal-light);
    font-weight: 300;
    font-size: 1.05rem;
    margin-bottom: 32px;
    line-height: 1.8;
}

.callback-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.callback-contact-item .icon-wrap {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
}

.callback-contact-item .icon-wrap svg {
    width: 20px;
    height: 20px;
    fill: var(--rose);
}

.callback-contact-item span {
    font-size: 0.95rem;
    font-weight: 500;
}

.callback-contact-item a {
    color: var(--charcoal);
    transition: color var(--transition);
}

.callback-contact-item a:hover {
    color: var(--rose);
}

.form-card {
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-card);
}

.form-card h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.form-card .form-subtitle {
    font-size: 0.9rem;
    color: var(--charcoal-light);
    margin-bottom: 32px;
    font-weight: 300;
}

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

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

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--charcoal);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(58, 46, 42, 0.08);
    border-radius: var(--radius-sm);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.92rem;
    color: var(--charcoal);
    background: var(--cream);
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--rose);
    background: white;
    box-shadow: 0 0 0 4px rgba(196, 137, 123, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--charcoal-light);
    opacity: 0.5;
}

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

.form-submit {
    width: 100%;
    padding: 16px;
    background: var(--rose);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition);
    letter-spacing: 0.02em;
    box-shadow: 0 4px 20px rgba(196, 137, 123, 0.3);
}

.form-submit:hover {
    background: var(--rose-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(196, 137, 123, 0.4);
}

/* ===== MAP SECTION ===== */
.map-section {
    padding: 100px 0 0;
    background: var(--cream);
}

.map-wrapper {
    margin-top: 48px;
    border-top: 4px solid var(--rose-light);
    line-height: 0;
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    display: block;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.7);
    padding: 48px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 32px;
}

.footer-brand .footer-logo {
    font-family: 'Lobster', cursive;
    font-size: 1.6rem;
    color: white;
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 0.82rem;
    line-height: 1.6;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--rose);
    transform: translateY(-2px);
}

.footer-social a svg {
    width: 16px;
    height: 16px;
    fill: rgba(255, 255, 255, 0.7);
}

.footer-social a:hover svg {
    fill: white;
}

.footer-col h4 {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: white;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer-col li {
    margin-bottom: 6px;
}

.footer-col a {
    font-size: 0.82rem;
    transition: color var(--transition);
}

.footer-col a:hover { color: var(--rose-light); }

.footer-col p {
    font-size: 0.82rem;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.75rem;
    opacity: 0.5;
}

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 250, 247, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu nav {
    text-align: center;
}

.mobile-menu a {
    display: block;
    font-family: 'Lobster', cursive;
    font-size: 2rem;
    color: var(--charcoal);
    padding: 16px;
    transition: color var(--transition);
}

.mobile-menu a:hover {
    color: var(--rose);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 140px;
    }

    .hero-subtitle { margin: 0 auto 36px; }
    .hero-buttons { justify-content: center; }
    .hero-visual { max-width: 500px; margin: 0 auto; }
    .hero-float-card-1 { left: 10px; bottom: -10px; }
    .hero-float-card-2 { right: 10px; top: 10px; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-visual { max-width: 400px; margin: 0 auto; }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .callback-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }

    .hero h1 { font-size: 2.4rem; }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

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

    .form-card { padding: 32px 24px; }

    .about-features { grid-template-columns: 1fr; }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero-float-card { display: none; }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; align-items: stretch; }
    .btn-primary, .btn-secondary { justify-content: center; }
    .hero h1 { font-size: 2rem; }
    .trust-bar-inner { gap: 28px; }
    .trust-bar img { height: 36px; }
}

/* ===== OUR STORY (About Reversed) ===== */
.about--reversed {
    background: var(--cream);
}

.about--reversed .about-grid {
    grid-template-columns: 1.2fr 1fr;
}

.about--reversed .about-accent-card {
    right: auto;
    left: -30px;
}

.about--reversed .story-signature {
    font-family: 'Lobster', cursive;
    font-size: 1.4rem;
    color: var(--rose);
    margin-top: 28px;
    margin-bottom: 0;
    font-weight: 400;
}

@media (max-width: 1024px) {
    .about--reversed .about-grid {
        grid-template-columns: 1fr;
    }

    .about--reversed .about-visual {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ===== POLICY PAGES ===== */

/* Page Hero */
.page-hero {
    padding: 160px 0 80px;
    background: linear-gradient(160deg, var(--warm-white) 0%, var(--blush) 40%, var(--rose-light) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero .breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--charcoal-light);
    margin-bottom: 20px;
}

.page-hero .breadcrumb a {
    color: var(--rose);
    font-weight: 600;
    transition: color var(--transition);
}

.page-hero .breadcrumb a:hover {
    color: var(--rose-deep);
}

.page-hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--charcoal);
    margin-bottom: 16px;
}

.page-hero > .container > p {
    color: var(--charcoal-light);
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Policy Sections */
.policy-section {
    padding: 100px 0;
    position: relative;
}

.policy-section--cream {
    background: var(--cream);
}

.policy-section--white {
    background: var(--warm-white);
}

/* Notice Cards Grid */
.notice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.notice-card {
    background: white;
    border-radius: var(--radius);
    padding: 36px 30px;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.notice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--rose-light), var(--rose));
    opacity: 0;
    transition: opacity var(--transition);
}

.notice-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

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

.notice-icon {
    width: 56px;
    height: 56px;
    background: var(--blush);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background var(--transition);
}

.notice-card:hover .notice-icon {
    background: var(--rose);
}

.notice-icon {
    color: var(--rose);
}

.notice-icon svg {
    width: 26px;
    height: 26px;
}

.notice-card:hover .notice-icon {
    color: white;
}

.notice-card h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--charcoal);
}

.notice-card p {
    font-size: 0.88rem;
    color: var(--charcoal-light);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 10px;
}

.notice-card p:last-of-type {
    margin-bottom: 0;
}

.notice-card ul {
    padding-left: 0;
    margin: 0;
}

.notice-card ul li {
    font-size: 0.88rem;
    color: var(--charcoal-light);
    line-height: 1.7;
    font-weight: 300;
    padding: 4px 0 4px 22px;
    position: relative;
}

.notice-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background: var(--rose-light);
    border-radius: 50%;
}

.notice-fee {
    display: inline-block;
    background: var(--cream);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--rose-deep);
    margin-top: 16px;
}

.notice-card:hover .notice-fee {
    background: var(--rose);
    color: white;
}

/* Policy Intro Callout */
.policy-intro {
    max-width: 700px;
    margin: 0 auto 60px;
    background: white;
    border-left: 4px solid var(--rose);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 32px 36px;
    box-shadow: var(--shadow-soft);
}

.policy-intro p {
    font-size: 1rem;
    color: var(--charcoal-light);
    line-height: 1.8;
    font-weight: 300;
    margin: 0;
}

/* Price Cards */
.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.price-card {
    background: white;
    border-radius: var(--radius);
    padding: 36px 30px;
    box-shadow: var(--shadow-soft);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--rose-light), var(--rose));
    opacity: 0;
    transition: opacity var(--transition);
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

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

.price-card h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--charcoal);
}

.price-card .price-from {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--charcoal-light);
    margin-bottom: 6px;
}

.price-card .price-amount {
    font-family: 'Lobster', cursive;
    font-size: 2.6rem;
    color: var(--rose);
    line-height: 1;
    margin-bottom: 18px;
}

.price-card .breed-list {
    font-size: 0.82rem;
    color: var(--charcoal-light);
    line-height: 1.6;
    font-weight: 300;
}

/* Additional Services */
.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.additional-card {
    background: white;
    border-radius: var(--radius);
    padding: 24px 28px;
    box-shadow: var(--shadow-soft);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: all var(--transition);
}

.additional-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.additional-card h4 {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
}

.additional-card .price {
    font-family: 'Lobster', cursive;
    font-size: 1.5rem;
    color: var(--rose);
    white-space: nowrap;
}

.additional-card .price-note {
    font-size: 0.72rem;
    display: block;
    font-family: 'Open Sans', sans-serif;
    color: var(--charcoal-light);
    font-weight: 400;
}

/* Policy CTA Section */
.policy-cta {
    padding: 80px 0;
    background: linear-gradient(160deg, var(--cream) 0%, var(--blush) 100%);
    text-align: center;
}

.policy-cta h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 16px;
}

.policy-cta p {
    color: var(--charcoal-light);
    font-weight: 300;
    font-size: 1.05rem;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Policy Notes */
.policy-note {
    text-align: center;
    margin-top: 48px;
    font-size: 0.9rem;
    color: var(--charcoal-light);
    font-style: italic;
}

/* Responsive */
@media (max-width: 1024px) {
    .notice-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .price-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 140px 0 60px;
    }

    .policy-section {
        padding: 60px 0;
    }

    .notice-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .notice-card {
        padding: 28px 24px;
    }

    .price-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .policy-intro {
        padding: 24px;
        margin-bottom: 40px;
    }
}
