/* ============================================
   PIDDER PADDER PAWS — CSS
   Burgundy + Blush | Editorial Style
   ============================================ */

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

:root {
    --burgundy: #7B2D3B;
    --burgundy-deep: #5C1F2B;
    --burgundy-light: #9A3D4F;
    --blush: #F5E6E0;
    --blush-light: #FBF5F3;
    --blush-mid: #EDD5CC;
    --cream: #FFF9F7;
    --charcoal: #1A1A1A;
    --charcoal-light: #2D2D2D;
    --warm-gray: #6B6560;
    --warm-gray-light: #9E9690;
    --white: #FFFFFF;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: var(--font-sans);
    color: var(--charcoal);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.section-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--burgundy);
}

.eyebrow-line {
    width: 40px;
    height: 2px;
    background-color: var(--burgundy);
    flex-shrink: 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.25rem);
    color: var(--charcoal);
    margin-bottom: 20px;
}

.section-title--light {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--warm-gray);
    max-width: 560px;
}

.section-subtitle--light {
    color: rgba(255, 255, 255, 0.75);
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-medium);
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--burgundy);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--burgundy-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(123, 45, 59, 0.35);
}

.btn-secondary {
    background-color: transparent;
    color: var(--charcoal);
    border: 1.5px solid var(--charcoal);
}

.btn-secondary:hover {
    background-color: var(--charcoal);
    color: var(--white);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ---------- NAVIGATION ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(255, 249, 247, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(123, 45, 59, 0.08);
    transition: all var(--transition-medium);
}

.nav.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--burgundy);
}

.nav-logo-icon {
    color: var(--burgundy);
}

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

.nav-link {
    padding: 8px 16px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--charcoal-light);
    border-radius: 8px;
    transition: all var(--transition-fast);
}

.nav-link:hover {
    color: var(--burgundy);
    background-color: rgba(123, 45, 59, 0.06);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--charcoal);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

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

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

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

/* ---------- HERO ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 24px 80px;
    background: linear-gradient(135deg, var(--blush-light) 0%, var(--blush) 50%, var(--blush-mid) 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(123, 45, 59, 0.04) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(123, 45, 59, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    max-width: 1320px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--burgundy);
}

.hero-eyebrow-line {
    width: 40px;
    height: 2px;
    background-color: var(--burgundy);
}

.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--charcoal);
    margin-bottom: 24px;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.hero-headline em {
    font-style: italic;
    color: var(--burgundy);
}

.hero-subtitle {
    font-size: 1.1875rem;
    line-height: 1.75;
    color: var(--warm-gray);
    max-width: 480px;
    margin-bottom: 40px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-stat-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--burgundy);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.8125rem;
    color: var(--warm-gray);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-stat-divider {
    width: 1px;
    height: 48px;
    background-color: rgba(123, 45, 59, 0.2);
}

.hero-image-col {
    position: relative;
}

.hero-image-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(123, 45, 59, 0.15);
}

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

.hero-image-accent {
    position: absolute;
    bottom: -40px;
    left: -60px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 4px solid var(--white);
}

.hero-image-accent img {
    width: 400px;
    height: 300px;
    object-fit: cover;
}

.hero-accent-badge {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background-color: var(--white);
    color: var(--burgundy);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--warm-gray);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--burgundy), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.7); }
}

/* ---------- ABOUT ---------- */
.about {
    padding: 120px 24px;
    background-color: var(--cream);
}

.about-container {
    max-width: 1320px;
    margin: 0 auto;
}

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

.about-image-side {
    position: relative;
}

.about-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(123, 45, 59, 0.12);
}

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

.about-image-float {
    position: absolute;
    bottom: -30px;
    right: -30px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border: 4px solid var(--cream);
}

.about-image-float img {
    width: 300px;
    height: 200px;
    object-fit: cover;
}

.about-content-side {
    padding: 20px 0;
}

.about-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--warm-gray);
    margin-bottom: 20px;
}

.about-values {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.value-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.value-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background-color: var(--blush);
    color: var(--burgundy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-text h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.value-text p {
    font-size: 0.9375rem;
    color: var(--warm-gray);
    line-height: 1.6;
}

/* ---------- PRODUCTS ---------- */
.products {
    padding: 120px 24px;
    background-color: var(--burgundy);
    position: relative;
    overflow: hidden;
}

.products::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
                      radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.products-container {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.products-header {
    text-align: center;
    margin-bottom: 64px;
}

.products-header .section-eyebrow {
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
}

.products-header .eyebrow-line {
    background-color: rgba(255, 255, 255, 0.4);
}

.products-header .section-subtitle {
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 64px;
}

.product-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    display: block;
    group: true;
}

.product-card--large {
    grid-column: 1 / -1;
}

.product-card-image {
    position: relative;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.7) 0%, transparent 60%);
}

.product-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    color: var(--white);
}

.product-card-tag {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
    backdrop-filter: blur(8px);
}

.product-card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.product-card-content p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.product-card-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.product-card-col .product-card {
    flex: 1;
}

.product-card-col .product-card-image img {
    height: 280px;
}

.products-cta {
    text-align: center;
    padding: 48px;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.products-cta p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.0625rem;
    margin-bottom: 24px;
}

.products-cta .btn-primary {
    background-color: var(--white);
    color: var(--burgundy);
}

.products-cta .btn-primary:hover {
    background-color: var(--blush);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* ---------- SERVICES ---------- */
.services {
    padding: 120px 24px;
    background-color: var(--blush-light);
}

.services-container {
    max-width: 1320px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 64px;
}

.services-header .section-eyebrow {
    justify-content: center;
}

.services-header .section-subtitle {
    margin: 0 auto;
}

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

.service-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px 28px;
    text-align: center;
    transition: all var(--transition-medium);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(123, 45, 59, 0.1);
    border-color: rgba(123, 45, 59, 0.1);
}

.service-card-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background-color: var(--blush);
    color: var(--burgundy);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all var(--transition-medium);
}

.service-card:hover .service-card-icon {
    background-color: var(--burgundy);
    color: var(--white);
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9375rem;
    color: var(--warm-gray);
    line-height: 1.7;
}

/* ---------- TESTIMONIAL ---------- */
.testimonial {
    padding: 120px 24px;
    background-color: var(--burgundy-deep);
    position: relative;
    overflow: hidden;
}

.testimonial-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
                      radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.testimonial-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.testimonial-quote-mark {
    font-family: var(--font-serif);
    font-size: 8rem;
    line-height: 0.8;
    color: rgba(255, 255, 255, 0.08);
    margin-bottom: -40px;
}

.testimonial-content blockquote {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-style: italic;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-attribution {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-meta {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-name {
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.testimonial-location {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ---------- CONTACT ---------- */
.contact {
    padding: 120px 24px 80px;
    background-color: var(--cream);
}

.contact-container {
    max-width: 1320px;
    margin: 0 auto;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 64px;
}

.contact-intro {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--warm-gray);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: var(--blush);
    color: var(--burgundy);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-detail-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--warm-gray-light);
    font-weight: 600;
}

.contact-detail-value {
    font-size: 1rem;
    color: var(--charcoal);
    line-height: 1.6;
}

.contact-detail-link {
    font-size: 1rem;
    color: var(--burgundy);
    font-weight: 500;
}

.contact-detail-link:hover {
    color: var(--burgundy-deep);
    text-decoration: underline;
}

.contact-form-wrapper {
    background-color: var(--white);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(123, 45, 59, 0.06);
}

.contact-form-wrapper h3 {
    font-size: 1.75rem;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.contact-form-note {
    font-size: 0.9375rem;
    color: var(--warm-gray);
    margin-bottom: 32px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--blush-mid);
    border-radius: 12px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--charcoal);
    background-color: var(--blush-light);
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--burgundy);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(123, 45, 59, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--warm-gray-light);
}

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

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.show {
    display: block;
}

.success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background-color: var(--blush);
    color: var(--burgundy);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.form-success h4 {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.form-success p {
    font-size: 0.9375rem;
    color: var(--warm-gray);
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 300px;
}

/* ---------- FOOTER ---------- */
.footer {
    background-color: var(--charcoal);
    color: var(--white);
    padding: 80px 24px 0;
}

.footer-container {
    max-width: 1320px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-logo-icon {
    color: var(--blush);
}

.footer-brand p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.footer-links-group h4 {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

.footer-links-group ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-group a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-links-group a:hover {
    color: var(--blush);
}

.footer-links-group address {
    font-style: normal;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-phone a,
.footer-email a {
    font-size: 0.9375rem;
    color: var(--blush);
}

.footer-phone a:hover,
.footer-email a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ---------- SCROLL REVEAL (progressive enhancement) ---------- */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .reveal.revealed {
        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; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-image-col {
        max-width: 500px;
    }
    
    .hero-image-main img {
        height: 500px;
    }
    
    .about-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-image-side {
        max-width: 500px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background-color: rgba(255, 249, 247, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-medium);
        border-bottom: 1px solid rgba(123, 45, 59, 0.08);
    }
    
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 24px 60px;
    }
    
    .hero-headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .hero-image-accent {
        left: -10px;
        bottom: -20px;
    }
    
    .hero-image-accent img {
        width: 250px;
        height: 180px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .hero-stat-number {
        font-size: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card--large {
        grid-column: auto;
    }
    
    .product-card-col {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 32px 24px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-cta-group {
        flex-direction: column;
    }
    
    .hero-cta-group .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .hero-stat-divider {
        display: none;
    }
    
    .about-image-float {
        right: -10px;
        bottom: -15px;
    }
    
    .about-image-float img {
        width: 200px;
        height: 140px;
    }
}
