/* === Wild & Gentle — Natural Organic Pet Wellness === */
:root {
    --bg: #faf8f4;
    --bg-warm: #f4f0ea;
    --bg-green: #eef3eb;
    --text: #2d3328;
    --text-muted: #6b7264;
    --text-light: #96998f;
    --green: #4a7c59;
    --green-dark: #3a6248;
    --green-light: #a8c5a0;
    --terracotta: #c4836b;
    --cream: #f5f0e8;
    --font-display: 'DM Serif Display', serif;
    --font-body: 'DM Sans', sans-serif;
    --radius: 8px;
    --radius-lg: 16px;
    --transition: .4s cubic-bezier(.25, .46, .45, .94);
}

/* Reset */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.8;
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }

/* Layout */
.container { max-width: 1080px; margin: 0 auto; padding: 0 28px; }
.narrow { max-width: 640px; margin: 0 auto; }
.center { display: block; text-align: center; }

/* Typography */
.section-tag {
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--green);
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    text-align: center;
    margin-bottom: 16px;
    color: var(--text);
}
.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto 40px;
    font-size: .92rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .02em;
    transition: all var(--transition);
    cursor: pointer;
}
.btn-primary {
    background: var(--green);
    color: #fff;
    border: 1px solid var(--green);
}
.btn-primary:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
    transform: translateY(-1px);
}
.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,.6);
}
.btn-outline:hover {
    background: rgba(255,255,255,.1);
    border-color: #fff;
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 28px;
    transition: all .35s ease;
}
.header.scrolled {
    background: rgba(250, 248, 244, .96);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 20px rgba(45, 51, 40, .04);
    padding: 12px 28px;
}
.header-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--green);
}
.header .logo { color: #fff; }
.header.scrolled .logo { color: var(--green); }
.nav { display: flex; gap: 28px; }
.nav a {
    font-size: .82rem;
    color: rgba(255,255,255,.8);
    transition: color .3s;
    letter-spacing: .01em;
}
.nav a:hover { color: #fff; }
.header.scrolled .nav a { color: var(--text-muted); }
.header.scrolled .nav a:hover { color: var(--green); }
.header-cta {
    font-size: .78rem;
    padding: 8px 18px;
    border: 1px solid rgba(255,255,255,.5);
    border-radius: var(--radius);
    color: #fff;
    transition: all .3s;
}
.header-cta:hover { background: rgba(255,255,255,.1); }
.header.scrolled .header-cta {
    border-color: var(--green);
    color: var(--green);
}
.header.scrolled .header-cta:hover {
    background: var(--green);
    color: #fff;
}
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 24px;
    height: 20px;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
}
.nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    transition: all .3s;
}
.header.scrolled .nav-toggle span { background: var(--text); }

/* ==================== HERO ==================== */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 8s ease;
}
.hero-bg img.loaded { transform: scale(1); }
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(45,51,40,.3) 0%, rgba(45,51,40,.6) 100%);
}
.hero-content {
    position: relative;
    text-align: center;
    max-width: 600px;
    padding: 0 24px;
}
.hero-tag {
    font-size: .72rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255,255,255,.7);
    margin-bottom: 16px;
    display: block;
}
.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}
.hero-content p {
    color: rgba(255,255,255,.8);
    font-size: .95rem;
    margin-bottom: 32px;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-leaf {
    position: absolute;
    bottom: -20px;
    right: 5%;
    width: 180px;
    color: var(--green-light);
    opacity: .3;
    animation: leafFloat 12s ease-in-out infinite;
}
@keyframes leafFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* ==================== VALUES STRIP ==================== */
.values-strip {
    background: var(--green);
    padding: 20px 0;
    overflow: hidden;
}
.values-inner {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}
.value-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.9);
    font-size: .82rem;
    font-weight: 400;
    letter-spacing: .01em;
}
.value-icon { font-size: 1rem; }

/* ==================== PHILOSOPHY ==================== */
.philosophy-section { padding: 100px 0; }
.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.philosophy-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}
.philosophy-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    margin-bottom: 20px;
    line-height: 1.3;
}
.philosophy-text p {
    color: var(--text-muted);
    font-size: .9rem;
    margin-bottom: 16px;
}
.philosophy-certs {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    flex-wrap: wrap;
}
.philosophy-certs span {
    padding: 6px 14px;
    background: var(--bg-green);
    border-radius: 20px;
    font-size: .75rem;
    color: var(--green);
    font-weight: 500;
    letter-spacing: .02em;
}

/* ==================== SERVICES ==================== */
.services-section {
    padding: 100px 0;
    background: var(--bg-warm);
}
.services-list {
    max-width: 720px;
    margin: 40px auto 0;
}
.service-item {
    display: flex;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid rgba(74, 124, 89, .12);
    align-items: flex-start;
}
.service-item:last-child { border-bottom: none; }
.service-number {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--green-light);
    flex-shrink: 0;
    width: 36px;
}
.service-body h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 6px;
    color: var(--text);
}
.service-body p {
    color: var(--text-muted);
    font-size: .88rem;
    margin-bottom: 8px;
}
.service-price {
    font-size: .78rem;
    color: var(--green);
    font-weight: 500;
    letter-spacing: .02em;
}

/* ==================== IMAGE BAND ==================== */
.image-band {
    width: 100%;
    height: 40vh;
    min-height: 280px;
    overflow: hidden;
    position: relative;
}
.image-band img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s;
}

/* ==================== PRODUCTS CAROUSEL ==================== */
.products-section { padding: 100px 0; }
.products-carousel {
    margin-top: 20px;
    overflow-x: auto;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 20px 0 40px;
}
.products-carousel::-webkit-scrollbar { display: none; }
.products-carousel:active { cursor: grabbing; }
.products-track {
    display: flex;
    gap: 24px;
    padding: 0 max(28px, calc((100vw - 1080px)/2));
    width: max-content;
}
.product-card {
    width: 280px;
    flex-shrink: 0;
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(45, 51, 40, .04);
    transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(45, 51, 40, .08);
}
.product-img {
    height: 220px;
    overflow: hidden;
}
.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.product-card:hover .product-img img {
    transform: scale(1.05);
}
.product-info {
    padding: 20px;
}
.product-info h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin-bottom: 4px;
}
.product-info p {
    font-size: .82rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.product-price {
    font-weight: 500;
    color: var(--green);
    font-size: .88rem;
}
.carousel-hint {
    text-align: center;
    color: var(--text-light);
    font-size: .75rem;
    margin-top: 12px;
    letter-spacing: .05em;
}

/* ==================== TESTIMONIAL ==================== */
.testimonial-section {
    padding: 80px 0;
    background: var(--bg-green);
}
.testimonial {
    text-align: center;
    border: none;
    padding: 0;
}
.testimonial p {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 20px;
    font-style: normal;
}
.testimonial cite {
    font-style: italic;
    color: var(--text-muted);
    font-size: .85rem;
}

/* ==================== VISIT ==================== */
.visit-section { padding: 100px 0; }
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.visit-text h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    margin-bottom: 16px;
}
.visit-text > p {
    color: var(--text-muted);
    font-size: .9rem;
    margin-bottom: 28px;
}
.visit-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}
.visit-detail strong {
    display: block;
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 4px;
    font-weight: 500;
}
.visit-detail span {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.visit-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* ==================== FOOTER ==================== */
.footer {
    padding: 48px 0 32px;
    border-top: 1px solid rgba(74, 124, 89, .1);
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.footer-left .logo {
    display: block;
    margin-bottom: 8px;
}
.footer-left p {
    color: var(--text-light);
    font-size: .8rem;
    line-height: 1.6;
}
.footer-nav {
    display: flex;
    gap: 20px;
    margin-bottom: 12px;
}
.footer-nav a {
    font-size: .82rem;
    color: var(--text-muted);
    transition: color .3s;
}
.footer-nav a:hover { color: var(--green); }
.footer-copy {
    font-size: .75rem;
    color: var(--text-light);
}

/* ==================== ANIMATIONS ==================== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s var(--transition), transform .7s var(--transition);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 900px) {
    .philosophy-grid,
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .philosophy-image { order: -1; }
    .philosophy-image img,
    .visit-image img { height: 300px; }
    .visit-details { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav, .header-cta { display: none; }
    .nav-toggle { display: flex; }
    .nav.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        inset: 0;
        background: var(--bg);
        padding: 100px 40px 40px;
        gap: 24px;
        z-index: 999;
    }
    .nav.open a {
        font-size: 1.2rem;
        color: var(--text);
    }
    .hero { height: 90vh; }
    .hero-content h1 { font-size: 2rem; }
    .values-inner { gap: 20px; }
    .value-item { font-size: .75rem; }
    .services-section,
    .philosophy-section,
    .products-section,
    .visit-section { padding: 60px 0; }
    .footer-inner { flex-direction: column; gap: 24px; }
    .footer-right { text-align: left; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: center; }
    .product-card { width: 240px; }
}
