/**
 * Pfotenparadies – Premium Pet Shop Stylesheet
 * Primary #2E5E4E | Orange #F4A261 | Accent #A8DADC
 */

:root {
    --primary: #2E5E4E;
    --primary-dark: #234a3d;
    --secondary: #F4A261;
    --secondary-dark: #e76f51;
    --accent: #A8DADC;
    --bg: #F8F9FA;
    --text: #1F2937;
    --text-muted: #6b7280;
    --white: #FFFFFF;
    --font-head: 'Fraunces', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;
    --shadow: 0 10px 40px rgba(31, 41, 55, 0.08);
    --shadow-lg: 0 20px 50px rgba(46, 94, 78, 0.12);
    --radius: 16px;
    --radius-lg: 24px;
    --header-h: 76px;
    --ease: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    overflow-x: hidden;
}

body.loaded .page-loader { opacity: 0; visibility: hidden; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-head);
    font-weight: 600;
    line-height: 1.2;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--secondary-dark); }

.container-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.accent-orange { color: var(--secondary); }

/* Loader */
.page-loader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--white);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}
.loader-paw {
    font-size: 3rem; color: var(--primary);
    animation: pawBounce 1s ease infinite;
}
.loader-text {
    font-family: var(--font-head);
    font-size: 1.5rem;
    margin-top: 1rem;
    color: var(--text);
}
@keyframes pawBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Buttons */
.btn-primary {
    --bs-btn-bg: var(--primary);
    --bs-btn-border-color: var(--primary);
    --bs-btn-hover-bg: var(--primary-dark);
    --bs-btn-hover-border-color: var(--primary-dark);
    border-radius: 50px;
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    transition: transform var(--ease), box-shadow var(--ease);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-secondary {
    --bs-btn-bg: var(--secondary);
    --bs-btn-border-color: var(--secondary);
    --bs-btn-color: var(--text);
    --bs-btn-hover-bg: var(--secondary-dark);
    --bs-btn-hover-border-color: var(--secondary-dark);
    --bs-btn-hover-color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    transition: all var(--ease);
}
.btn-secondary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(244, 162, 97, 0.4); }

.btn-outline-primary-custom {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    border-radius: 50px;
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    transition: all var(--ease);
}
.btn-outline-primary-custom:hover {
    background: var(--primary);
    color: var(--white);
}

/* Header */
.site-header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1040;
    height: var(--header-h);
    transition: background var(--ease), box-shadow var(--ease);
}

.header-hero {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-hero .nav-link,
.header-hero .brand-text { color: var(--white); }

.header-hero .navbar-toggler span { background: var(--white); }

.header-solid,
.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
}

.header-solid .nav-link,
.header-solid .brand-text,
.site-header.scrolled .nav-link,
.site-header.scrolled .brand-text { color: var(--text); }

.navbar { height: var(--header-h); padding: 0; }

.navbar-brand {
    display: flex; align-items: center; gap: 0.6rem;
    font-family: var(--font-head);
    font-size: 1.4rem;
    font-weight: 700;
}

.brand-logo {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
}

.brand-text { color: var(--primary); }
.header-hero .brand-text { color: var(--white); }

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 2px;
    background: var(--secondary);
    transition: all var(--ease);
}

.nav-link:hover::after,
.nav-link.active::after { width: 70%; left: 15%; }

.nav-link.active { color: var(--primary) !important; }

.navbar-toggler {
    border: none; padding: 0.5rem;
    display: flex; flex-direction: column; gap: 5px;
}
.navbar-toggler span {
    width: 24px; height: 2px;
    background: var(--text);
    transition: var(--ease);
}

.btn-shop-cta { padding: 0.55rem 1.25rem !important; font-size: 0.9rem; }

@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--white);
        margin-top: 0.5rem;
        padding: 1.25rem;
        border-radius: var(--radius);
        box-shadow: var(--shadow-lg);
    }
    .header-hero .navbar-collapse .nav-link { color: var(--text); }
    .btn-shop-cta { width: 100%; margin-top: 0.5rem; }
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1450778869185-41d0ab8c6f8e?w=1920&q=85') center/cover no-repeat;
    animation: heroZoom 20s ease infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1); }
    to { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        120deg,
        rgba(46, 94, 78, 0.88) 0%,
        rgba(31, 41, 55, 0.6) 50%,
        rgba(46, 94, 78, 0.4) 100%
    );
}

.hero-content {
    position: relative; z-index: 2;
    padding: calc(var(--header-h) + 4rem) 0 5rem;
}

.hero-badge {
    display: inline-block;
    background: rgba(244, 162, 97, 0.9);
    color: var(--text);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    animation: fadeUp 0.8s ease;
}

.hero h1 {
    font-size: clamp(2.5rem, 6.5vw, 4.25rem);
    color: var(--white);
    max-width: 14ch;
    margin-bottom: 1.25rem;
    animation: fadeUp 0.8s ease 0.1s both;
}

.hero-lead {
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(1rem, 2vw, 1.15rem);
    max-width: 520px;
    margin-bottom: 2rem;
    animation: fadeUp 0.8s ease 0.2s both;
}

.hero-btns { animation: fadeUp 0.8s ease 0.3s both; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-pets-float {
    position: absolute;
    right: 5%;
    bottom: 10%;
    z-index: 2;
    display: none;
}

@media (min-width: 1200px) {
    .hero-pets-float {
        display: flex;
        gap: 1rem;
        animation: fadeUp 1s ease 0.5s both;
    }
}

.hero-pet-thumb {
    width: 100px; height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary);
    box-shadow: var(--shadow-lg);
}

/* Sections */
.section { padding: clamp(4rem, 9vw, 6rem) 0; }

.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--secondary-dark);
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}

.section-desc { color: var(--text-muted); max-width: 540px; }

.bg-white { background: var(--white); }
.bg-soft { background: var(--bg); }

/* Category cards */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.25rem;
}

.cat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all var(--ease);
    border: 2px solid transparent;
    display: block;
    color: var(--text);
}

.cat-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
    color: var(--text);
}

.cat-icon {
    width: 64px; height: 64px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--accent), rgba(46, 94, 78, 0.15));
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem;
    color: var(--primary);
    transition: transform var(--ease);
}

.cat-card:hover .cat-icon { transform: scale(1.1) rotate(-5deg); }

.cat-card h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.cat-card span { font-size: 0.85rem; color: var(--text-muted); }

/* Product cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.75rem;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--ease), box-shadow var(--ease);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--bg);
}

.product-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-img-wrap img { transform: scale(1.1); }

.product-tag {
    position: absolute;
    top: 1rem; left: 1rem;
    background: var(--secondary);
    color: var(--text);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
}

.product-body { padding: 1.5rem; }

.product-body h3 {
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.product-price {
    font-family: var(--font-head);
    font-size: 1.35rem;
    color: var(--primary);
    font-weight: 700;
}

.product-price del {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-left: 0.5rem;
}

.product-rating {
    color: var(--secondary);
    font-size: 0.85rem;
    margin: 0.5rem 0 1rem;
}

.btn-add-cart {
    width: 100%;
    border: none;
    background: var(--primary);
    color: var(--white);
    padding: 0.7rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--ease);
    cursor: pointer;
}

.btn-add-cart:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
}

/* Why us */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.why-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform var(--ease);
}

.why-card:hover { transform: translateY(-6px); }

.why-card i {
    font-size: 2.25rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Testimonials */
.review-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    height: 100%;
    border-left: 4px solid var(--secondary);
}

.review-stars { color: var(--secondary); margin-bottom: 1rem; }

.review-author {
    display: flex; align-items: center; gap: 1rem;
    margin-top: 1.25rem;
}

.review-author img {
    width: 48px; height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

/* Newsletter */
.newsletter-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: clamp(2.5rem, 6vw, 4rem);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-box::before {
    content: '';
    position: absolute;
    width: 200px; height: 200px;
    background: rgba(168, 218, 220, 0.2);
    border-radius: 50%;
    top: -60px; right: -40px;
}

.newsletter-box h2,
.newsletter-box p { color: var(--white); position: relative; }

.newsletter-form {
    max-width: 440px;
    margin: 1.5rem auto 0;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-form input {
    flex: 1;
    min-width: 200px;
    border: none;
    border-radius: 50px;
    padding: 0.85rem 1.25rem;
}

/* Page banner */
.page-banner {
    padding: calc(var(--header-h) + 3rem) 0 3rem;
    background: linear-gradient(135deg, var(--primary), #1a3d32);
    position: relative;
    overflow: hidden;
}

.page-banner h1 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3rem);
    position: relative;
}

.breadcrumb-custom {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.breadcrumb-custom a { color: var(--secondary); }

/* Shop toolbar */
.shop-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    background: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.shop-search {
    flex: 1;
    min-width: 200px;
    max-width: 360px;
    position: relative;
}

.shop-search input {
    width: 100%;
    border: 2px solid var(--bg);
    border-radius: 50px;
    padding: 0.7rem 1rem 0.7rem 2.75rem;
}

.shop-search i {
    position: absolute;
    left: 1rem; top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.filter-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.filter-pill {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 2px solid var(--bg);
    background: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--ease);
    color: var(--text);
}

.filter-pill:hover,
.filter-pill.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.pagination-custom {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination-custom a,
.pagination-custom span {
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px;
    font-weight: 600;
    background: var(--white);
    color: var(--text);
    box-shadow: var(--shadow);
    transition: all var(--ease);
}

.pagination-custom a:hover,
.pagination-custom .active {
    background: var(--primary);
    color: var(--white);
}

/* Team */
.team-card {
    text-align: center;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow);
    transition: transform var(--ease);
}

.team-card:hover { transform: translateY(-6px); }

.team-card img {
    width: 120px; height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 4px solid var(--accent);
}

.team-role { color: var(--primary); font-weight: 600; font-size: 0.85rem; }

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-num {
    font-family: var(--font-head);
    font-size: clamp(2.5rem, 5vw, 3.25rem);
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0.5rem;
}

/* Blog */
.blog-layout {
    display: grid;
    gap: 2rem;
}

@media (min-width: 992px) {
    .blog-layout { grid-template-columns: 1fr 300px; }
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    transition: transform var(--ease);
}

.blog-card:hover { transform: translateY(-6px); }

.blog-card-img { height: 220px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }

.blog-sidebar {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow);
    height: fit-content;
    position: sticky;
    top: calc(var(--header-h) + 1rem);
}

.sidebar-list { list-style: none; padding: 0; margin: 0; }
.sidebar-list li { border-bottom: 1px solid var(--bg); }
.sidebar-list a {
    display: flex; justify-content: space-between;
    padding: 0.75rem 0;
    color: var(--text);
    font-weight: 500;
}

/* Contact */
.contact-panel {
    background: linear-gradient(160deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    color: var(--white);
}

.contact-row { display: flex; gap: 1rem; margin-bottom: 1.25rem; }
.contact-row i { color: var(--secondary); width: 24px; margin-top: 4px; }

.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.form-control, .form-select {
    border-radius: 12px;
    border: 2px solid var(--bg);
    padding: 0.8rem 1rem;
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(168, 218, 220, 0.4);
}

.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 340px;
    margin-top: 2rem;
}

.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* FAQ */
.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    overflow: hidden;
}

.faq-q {
    width: 100%;
    text-align: left;
    padding: 1.25rem 1.5rem;
    border: none;
    background: var(--white);
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-q i { color: var(--primary); transition: transform var(--ease); }
.faq-item.open .faq-q i { transform: rotate(180deg); }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.open .faq-a { max-height: 200px; }
.faq-a-inner { padding: 0 1.5rem 1.25rem; color: var(--text-muted); font-size: 0.95rem; }

/* Policy */
.policy-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: clamp(2rem, 5vw, 3rem);
    box-shadow: var(--shadow);
    max-width: 860px;
    margin: 0 auto;
}

.policy-content h2 { font-size: 1.35rem; color: var(--primary); margin-top: 1.75rem; }

/* Footer */
.site-footer { background: var(--text); color: rgba(255,255,255,0.8); margin-top: 4rem; }
.footer-top { padding: 4rem 0 2rem; }
.footer-brand {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.site-footer h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--secondary);
    margin-bottom: 1.25rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.75); }
.footer-links a:hover { color: var(--secondary); }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li { margin-bottom: 0.75rem; display: flex; gap: 0.75rem; font-size: 0.9rem; }
.footer-contact i { color: var(--secondary); }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer-social a {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    transition: all var(--ease);
}
.footer-social a:hover { background: var(--secondary); color: var(--text); }
.footer-legal-inline { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; }
.footer-legal-inline li { margin: 0; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    font-size: 0.85rem;
}

/* Utilities */
.back-top {
    position: fixed; bottom: 2rem; right: 2rem;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    border: none;
    box-shadow: var(--shadow-lg);
    opacity: 0; visibility: hidden;
    transform: translateY(16px);
    transition: all var(--ease);
    z-index: 1030;
    cursor: pointer;
}
.back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }

.cart-toast {
    position: fixed; bottom: 5rem; right: 2rem;
    background: var(--primary);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex; align-items: center; gap: 0.75rem;
    transform: translateX(150%);
    transition: transform var(--ease);
    z-index: 1050;
}
.cart-toast.show { transform: translateX(0); }

.cookie-bar {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--text);
    color: var(--white);
    padding: 1rem 1.5rem;
    display: flex; flex-wrap: wrap;
    align-items: center; justify-content: space-between;
    gap: 1rem;
    z-index: 1045;
    transform: translateY(100%);
    transition: transform var(--ease);
}
.cookie-bar.show { transform: translateY(0); }
.cookie-bar a { color: var(--secondary); }
.cookie-bar p { margin: 0; font-size: 0.9rem; }

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* About split */
.split-block {
    display: grid;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 992px) {
    .split-block { grid-template-columns: 1fr 1fr; }
}

.philosophy-card {
    background: linear-gradient(135deg, var(--accent), rgba(46, 94, 78, 0.08));
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid rgba(168, 218, 220, 0.5);
}
