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

:root {
    --primary-color: #2d5a3d;
    --secondary-color: #6b9080;
    --accent-color: #e07a5f;
    --dark: #1a1a1a;        
    --light: #f4f4f4;
    --white: #ffffff;
    --soft-white: #d6e8dc;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    padding-top: 0;
    background: linear-gradient(rgba(45,90,61,0.55), rgba(107,144,128,0.55)),
                url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') no-repeat center top fixed;
    background-size: cover;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.home {
    background: none;
}

body.home::before {
    content: "";
    position: fixed;
    inset: 0;
    background: linear-gradient(rgba(45,90,61,0.55), rgba(107,144,128,0.55)),
                url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') no-repeat center top;
    background-size: cover;
    z-index: -2;
    pointer-events: none;
}

body:not(.home) .nav-links a:hover {
    color: var(--accent-color);
}

body:not(.home) .logo-icon {
    color: #A5B6A7;
    border-color: rgba(165, 182, 167, 0.6);
}

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

/* Navigation */
.navbar {
    background: transparent;
    box-shadow: none;
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    padding-top: env(safe-area-inset-top);
}

.navbar .container {
    display: flex;
    justify-content: space-between;     
    align-items: center;
    padding: 1rem 20px;
    color: var(--white);
}

.logo img {
    height: 42px;
    width: auto;
    display: block;
}

.logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--white);
    text-decoration: none;
    transition: transform 0.2s, background 0.2s, border-color 0.2s;
}

.logo-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.logo-block {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--white);
    font-size: 0.95rem;
    white-space: nowrap;
}

body:not(.home) .logo-block {
    color: #A5B6A7;
}

.logo-text {
    font-weight: 400;
}

.logo-icon:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.6);
}

.nav-links {
    display: flex;
    list-style: none;
    position: absolute;
    right: 0;
    height: auto;
    top: calc(70px + env(safe-area-inset-top, 0px));
    background: rgba(0, 0, 0, 0.85);
    flex-direction: column;
    align-items: center;
    width: min(200px, 60%);
    transform: translateX(100%);
    transition: transform 0.3s ease-in;
    box-shadow: var(--shadow);
    padding: 1.5rem 1rem;
    gap: 1rem;
    margin: 0;
    padding-left: 0;
    border-radius: 12px 0 0 12px;
}

.nav-links.active {
    transform: translateX(0%);
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary-color);
    font-size: 1.125rem;
    font-weight: 400;
    transition: color 0.3s;
}

.logo-text {
    display: none;
}


.nav-links a:hover {
    color: var(--accent-color);
}

.burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.45);
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.burger div {
    width: 22px;
    height: 3px;
    background-color: var(--white);
    margin: 3px 0;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    background: transparent;
    color: var(--white);
    padding: clamp(5rem, 10vw, 8rem) 20px 25px;
    text-align: center;
    position: relative;
}

.home .hero-logo {
    position: fixed;
    top: -3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    pointer-events: none;
    z-index: 0;
}

@media screen and (min-width: 1200px) {
    .home .hero-logo {
        top: -9.75rem;
    }
}

.home .hero-logo img {
    width: min(510px, 80vw);
    height: auto;
    display: block;
    opacity: 0.525;
    filter: saturate(1.25);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    margin-top: 6.09375rem;
}

/* Page Headers */
.page-hero {
    padding: clamp(3rem, 6vw, 5rem) 20px;
    background: transparent;
    text-align: center;
}

.page-hero h1, .h1 {
    font-size: clamp(1.6rem, 3.5vw, 2.25rem);
    margin-bottom: 1rem;
    color: var(--soft-white);
    line-height: 120%;
}

.page-hero p {
    font-size: 1.1rem;
    color: var(--soft-white);
    max-width: 700px;
    margin: 0 auto;
}

.page-section {
    padding: clamp(2rem, 5vw, 4rem) clamp(12px, 3vw, 20px);
}

.hero-content h1 {
    text-shadow: 0 6px 18px rgba(0,0,0,0.45);
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--soft-white);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: 1rem;
    opacity: 0.95;
    color: var(--soft-white);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--soft-white);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.hero-actions .cta-button {
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
}

.cta-button {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Middle features (three boxes) */
.middle-features {
    padding: clamp(2rem, 5vw, 4rem) 20px;
    background: transparent;
    position: relative;
    z-index: 1;
}

.middle-features h2 {
    text-align: center;
    font-size: 2.6rem;
    margin-top: 0.75rem;
    margin-bottom: 2rem;
    color: var(--soft-white);
}

.mission-paw {
    display: block;
    width: min(120px, 22vw);
    height: auto;
    margin: 1rem auto 1rem;
    opacity: 0.5;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.feature-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-card.overlay-card {
    position: relative;
    padding: 0;
    overflow: hidden;
    color: var(--white);
    background: transparent;
    min-height: clamp(260px, 32vw, 425px);
}

.money-grid .feature-card.overlay-card {
    min-height: unset;
    background: rgba(45,90,61,0.65);
}

.money-grid .feature-card.overlay-card .overlay-image {
    display: none;
}

.money-grid .feature-card.overlay-card .feature-overlay {
    position: relative;
    inset: unset;
    background: none;
    padding: 1.5rem;
    justify-content: flex-start;
}

.feature-card.overlay-card .overlay-image {
    position: absolute;
    inset: 0;
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    border: none;
}

.feature-card.overlay-card .feature-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 0.5rem;
    padding: 1.25rem;
    background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.65) 100%);
    text-align: center;
    align-items: center;
}

.feature-card.overlay-card .feature-overlay h3 {
    color: var(--white);
    margin-bottom: 0;
    min-height: 3.2rem;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.feature-card.overlay-card .feature-overlay p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    min-height: 5rem;
}

.feature-card.wwiii-overlay .feature-overlay {
    color: var(--white);
}   

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-image {
    position: relative;
    height: clamp(200px, 75vw, 280px);
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed rgba(255, 255, 255, 0.35);
}

.feature-image.mission-full {
    border: none;
}

.leashes-image {
    width: 100%;
    height: clamp(200px, 75vw, 280px);
    border-radius: 20px;
    overflow: hidden;
    border: none;
    margin-bottom: 0;
    background-color: transparent;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.supporters-image {
    height: clamp(280px, 90vw, 450px);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    padding: 0;
    border-radius: 16px;
}

.winterwillow-circle {
    width: min(240px, 100%);
    aspect-ratio: 1 / 1;
    height: auto;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    background-size: cover;
}

.htmade-placeholder {
    background-color: #d0d0d0;
    background-image: none !important;
}

.htmade-section-alt {
    background: rgba(0, 0, 0, 0.03);
}

.leashes-card {
    background: transparent;
    box-shadow: none;
    padding: 0;
    align-items: flex-start;
    justify-content: flex-start;
}

.leashes-card .feature-text {
    width: 100%;
    flex: 1;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-top: 0.5rem;
    text-align: center;
}

.leashes-card .feature-text h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.leashes-card .feature-text p {
    color: #333;
    margin-bottom: 0;
}

.feature-image span {
    font-size: 0.9rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: #666;
    margin-bottom: 1rem;
}

.middle-features .cta-button {
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
    box-shadow: none;
}

 

/* About Section */
.about {
    padding: clamp(3rem, 6vw, 5rem) 20px;
    background: transparent;
    position: relative;
    z-index: 1;
}

.about .section-title {
    text-align: center;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: 2.5rem;
    color: var(--soft-white);
}

.story-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: stretch;
    background: transparent;
    padding: 0;
    color: var(--dark);
}

@media screen and (min-width: 1025px) {
    .story-panel {
        grid-template-columns: 1fr 2fr;
    }
}

.story-image {
    border-radius: 16px;
    min-height: 280px;
    background: var(--light);
    border: none;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    position: relative;
}

.story-image::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0.6) 100%);
    pointer-events: none;
}

.story-image span {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.story-content {
    background: rgba(255, 255, 255, 0.55);
    border-radius: 16px;
    padding: 1.5rem;
}

.story-content h2 {
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.story-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
    max-width: 680px;
}

.about h2 {
    text-align: center;
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.about-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Products Section */
.products {
    padding: clamp(3rem, 6vw, 5rem) 20px;
    background: transparent;
    position: relative;
    z-index: 1;
}

.products h2 {
    text-align: center;
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
    color: var(--soft-white);
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.85);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.55);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    height: clamp(160px, 22vw, 280px);
    width: 100%;
    object-fit: cover;
    display: block;
}

.product-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.product-specs {
    padding: 0 1.5rem;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.product-description {
    padding: 0 1.5rem;
    margin-bottom: 1rem;
}

.price {
    padding: 0 1.5rem 1.5rem;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-color);
}

.custom-note {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid var(--accent-color);
    font-size: 1.1rem;
}

/* Impact Section */
.impact {
    padding: clamp(3rem, 6vw, 5rem) 20px;
    background: transparent;
    position: relative;
    z-index: 1;
}

.impact h2 {
    text-align: center;
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    margin-bottom: 3rem;
    color: var(--soft-white);
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 10px;
}

.stat-number {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
}

.impact-description {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.impact-description h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.impact-description p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.partners {
    margin-top: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.55);
    border-radius: 10px;
}

/* Contact Section */
.contact {
    padding: clamp(3rem, 6vw, 5rem) 20px;
    background: transparent;
    position: relative;
    z-index: 1;
}

.contact h2 {
    text-align: center;
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.contact-simple {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.contact-simple p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.contact-methods {
    margin: 1.5rem 0;
}

.contact-methods p {
    padding: 0.5rem 0;
    font-size: 1.1rem;
}


/* Footer */
footer {
    background: var(--dark);
    color: var(--white);
    text-align: center;
    padding: 2rem 20px;
    margin-top: auto;
}

footer p {
    margin: 0.5rem 0;
}

/* Mobile Responsive */

/* Tablet: 2-column grid */
@media screen and (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Phone: single column */
@media screen and (max-width: 580px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .leashes-card .feature-text {
        min-height: unset;
    }
}

/* Small phone: extra reductions */
@media screen and (max-width: 480px) {
    .hero-actions .cta-button {
        padding: 0.75rem 1.4rem;
        font-size: 0.95rem;
    }

    .story-panel {
        padding: 1rem;
    }

    .feature-card {
        padding: 1rem;
    }

    .stat {
        padding: 1.25rem;
    }
}

