/* ===========================
   BakeIn Treats — Styles
   =========================== */

/* ---------- CSS Custom Properties ---------- */
:root {
    /* Brand Colors */
    --color-cream: #FFF8F0;
    --color-cream-dark: #F5EDE3;
    --color-beige: #E8D5C0;
    --color-beige-dark: #C9A882;
    --color-brown: #5C3D2E;
    --color-brown-dark: #3A2519;
    --color-pink: #F2B5C1;
    --color-pink-light: #FDDDE6;
    --color-pink-dark: #D4879A;
    --color-peach: #FCCBB0;
    --color-gold: #C8A55C;
    --color-gold-light: #E8D5A0;
    --color-lavender: #D5C4E0;
    --color-white: #FFFFFF;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 120px 0;
    --container-max: 1200px;
    --nav-height: 80px;

    /* Effects */
    --shadow-soft: 0 4px 30px rgba(92, 61, 46, 0.08);
    --shadow-medium: 0 8px 40px rgba(92, 61, 46, 0.12);
    --shadow-large: 0 20px 60px rgba(92, 61, 46, 0.15);
    --glass-bg: rgba(255, 248, 240, 0.7);
    --glass-border: rgba(200, 165, 92, 0.15);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--color-brown);
    background-color: var(--color-cream);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Section Utilities ---------- */
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 16px;
    position: relative;
    padding-left: 40px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-peach));
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-brown-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-brown);
    opacity: 0.7;
    max-width: 560px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s;
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-brown), var(--color-brown-dark));
    color: var(--color-cream);
    box-shadow: 0 4px 20px rgba(92, 61, 46, 0.3);
}

.btn-primary::before {
    background: linear-gradient(135deg, var(--color-brown-dark), #2a1810);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(92, 61, 46, 0.4);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-brown);
    border: 2px solid var(--color-beige);
    box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
    background: var(--color-cream-dark);
    border-color: var(--color-gold);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 42px;
    font-size: 1.05rem;
}

/* ---------- Reveal Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children */
.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; }

/* ===========================
   NAVBAR
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1001;
}

.logo-icon {
    font-size: 2rem;
    color: var(--color-gold);
    font-weight: 700;
    line-height: 1;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-brown-dark);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--color-brown);
    position: relative;
    padding: 4px 0;
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-peach));
    transition: width 0.3s ease;
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, var(--color-brown), var(--color-brown-dark));
    color: var(--color-cream) !important;
    padding: 10px 24px !important;
    border-radius: 50px;
    font-size: 0.85rem !important;
}

.nav-cta:hover {
    box-shadow: 0 4px 20px rgba(92, 61, 46, 0.3);
    transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 26px;
    height: 2.5px;
    background: var(--color-brown-dark);
    border-radius: 4px;
    transition: var(--transition);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===========================
   HERO
   =========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1517433670267-08bbd4be890f?w=1600&q=80') center/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(58, 37, 25, 0.82) 0%,
        rgba(92, 61, 46, 0.7) 40%,
        rgba(200, 165, 92, 0.4) 100%
    );
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}

.hero-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(200, 165, 92, 0.4);
    border-radius: 50%;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% {
        transform: translateY(-10vh) rotate(720deg);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 24px;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid rgba(200, 165, 92, 0.5);
    border-radius: 50px;
    font-size: 0.75rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-gold-light);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    background: rgba(200, 165, 92, 0.08);
}

.hero-title {
    font-family: var(--font-display);
    margin-bottom: 20px;
}

.hero-title .title-line {
    display: block;
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 700;
    line-height: 1.05;
    color: var(--color-cream);
    letter-spacing: -1px;
}

.hero-title .title-line.accent {
    color: var(--color-gold-light);
    font-style: italic;
    font-weight: 500;
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-style: italic;
    color: var(--color-peach);
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 248, 240, 0.75);
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-actions .btn-primary {
    background: linear-gradient(135deg, var(--color-gold), var(--color-beige-dark));
    color: var(--color-brown-dark);
    box-shadow: 0 4px 25px rgba(200, 165, 92, 0.4);
}

.hero-actions .btn-primary:hover {
    box-shadow: 0 8px 35px rgba(200, 165, 92, 0.5);
}

.hero-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-cream);
    border-color: rgba(255, 248, 240, 0.3);
    backdrop-filter: blur(10px);
}

.hero-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--color-gold-light);
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-scroll span {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 248, 240, 0.5);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(200, 165, 92, 0.6), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 0.6; }
    50% { transform: scaleY(1.3); opacity: 1; }
}

/* ===========================
   ABOUT
   =========================== */
.about {
    padding: var(--section-padding);
    background: var(--color-cream);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242, 181, 193, 0.15), transparent 70%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-large);
}

.about-img-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-img-wrapper:hover img {
    transform: scale(1.05);
}

.about-img-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    border: 3px solid var(--color-gold);
    border-radius: var(--radius-lg);
    opacity: 0.3;
    z-index: -1;
}

.about-float-card {
    position: absolute;
    bottom: -20px;
    right: -30px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 20px 28px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    z-index: 2;
}

.float-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-gold);
}

.float-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-brown);
    opacity: 0.7;
}

.about-text .section-title {
    text-align: left;
}

.about-text .section-label {
    text-align: left;
}

.about-description {
    font-size: 1.05rem;
    color: var(--color-brown);
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    background: var(--color-cream-dark);
    border: 1px solid rgba(200, 165, 92, 0.1);
    transition: var(--transition);
}

.stat:hover {
    border-color: var(--color-gold);
    background: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.stat-icon {
    font-size: 1.5rem;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-brown);
}

/* ===========================
   PRODUCTS
   =========================== */
.products {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--color-cream-dark) 0%, var(--color-cream) 100%);
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-beige), transparent);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.product-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(200, 165, 92, 0.1);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
    border-color: var(--color-gold);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 280px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 16px;
    background: var(--color-brown-dark);
    color: var(--color-cream);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
}

.product-badge.best {
    background: linear-gradient(135deg, var(--color-gold), var(--color-beige-dark));
    color: var(--color-brown-dark);
}

.product-info {
    padding: 28px 32px 32px;
}

.product-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-brown-dark);
    margin-bottom: 12px;
}

.product-info p {
    font-size: 0.95rem;
    color: var(--color-brown);
    opacity: 0.7;
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 0.5px;
}

.product-link span {
    transition: transform 0.3s ease;
}

.product-link:hover span {
    transform: translateX(6px);
}

.product-link:hover {
    color: var(--color-brown-dark);
}

/* ===========================
   GALLERY
   =========================== */
.gallery {
    padding: var(--section-padding);
    background: var(--color-cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(58, 37, 25, 0.7), transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-cream);
}

.gi-tall {
    grid-row: span 2;
}

.gi-wide {
    grid-column: span 2;
}

.gallery-cta {
    text-align: center;
    margin-top: 48px;
}

/* ===========================
   HOW TO ORDER
   =========================== */
.order {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--color-cream-dark) 0%, var(--color-cream) 100%);
    position: relative;
}

.order::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-beige), transparent);
}

.order-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-bottom: 48px;
}

.order-step {
    text-align: center;
    max-width: 300px;
    padding: 32px 24px;
    position: relative;
}

.step-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-beige);
    line-height: 1;
    margin-bottom: 16px;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(200, 165, 92, 0.1), rgba(242, 181, 193, 0.1));
    border: 2px solid var(--color-beige);
    transition: var(--transition);
    color: var(--color-gold);
}

.order-step:hover .step-icon {
    background: linear-gradient(135deg, var(--color-gold), var(--color-beige-dark));
    border-color: var(--color-gold);
    color: var(--color-white);
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(200, 165, 92, 0.3);
}

.order-step h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-brown-dark);
    margin-bottom: 12px;
}

.order-step p {
    font-size: 0.9rem;
    color: var(--color-brown);
    opacity: 0.7;
    line-height: 1.7;
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 120px;
    width: 60px;
}

.connector-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-beige), var(--color-gold), var(--color-beige));
    position: relative;
}

.connector-dot {
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.order-cta {
    text-align: center;
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials {
    padding: var(--section-padding);
    background: var(--color-brown-dark);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200, 165, 92, 0.1), transparent 70%);
    pointer-events: none;
}

.testimonials .section-label {
    color: var(--color-gold-light);
}

.testimonials .section-label::before {
    background: linear-gradient(90deg, var(--color-gold-light), var(--color-peach));
}

.testimonials .section-title {
    color: var(--color-cream);
}

.testimonials-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: rgba(255, 248, 240, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(200, 165, 92, 0.15);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255, 248, 240, 0.08);
    border-color: rgba(200, 165, 92, 0.3);
    transform: translateY(-4px);
}

.testimonial-stars {
    font-size: 1rem;
    color: var(--color-gold);
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 1rem;
    color: rgba(255, 248, 240, 0.8);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold), var(--color-peach));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-brown-dark);
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--color-cream);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--color-gold);
    opacity: 0.7;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--color-brown-dark);
}

.footer-top {
    padding: 80px 0 60px;
    border-top: 1px solid rgba(200, 165, 92, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-logo .logo-icon {
    font-size: 1.8rem;
    color: var(--color-gold);
}

.footer-logo .logo-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-cream);
}

.footer-tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 0.9rem;
    color: var(--color-gold);
    opacity: 0.7;
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 0.9rem;
    color: rgba(255, 248, 240, 0.5);
    line-height: 1.7;
}

.footer-links-col h4,
.footer-contact h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-cream);
    margin-bottom: 20px;
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-col a {
    font-size: 0.9rem;
    color: rgba(255, 248, 240, 0.5);
    transition: var(--transition);
}

.footer-links-col a:hover {
    color: var(--color-gold);
    padding-left: 6px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 248, 240, 0.5);
    margin-bottom: 12px;
}

.contact-item svg {
    color: var(--color-gold);
    flex-shrink: 0;
}

.contact-item a {
    color: rgba(255, 248, 240, 0.5);
}

.contact-item a:hover {
    color: var(--color-gold);
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(200, 165, 92, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--color-gold);
    color: var(--color-brown-dark);
    border-color: var(--color-gold);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(200, 165, 92, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(200, 165, 92, 0.1);
    padding: 24px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 248, 240, 0.35);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-img-wrapper img {
        height: 400px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 200px;
    }

    .testimonials-track {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
        --nav-height: 70px;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--color-cream);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        padding: 40px;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1000;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
    }

    .hero-title .title-line {
        font-size: clamp(2.5rem, 12vw, 4.5rem);
    }

    .hero-actions {
        flex-direction: column;
    }

    .about-grid {
        gap: 40px;
    }

    .about-img-wrapper img {
        height: 320px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .about-float-card {
        right: 10px;
        bottom: -10px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .gi-tall { grid-row: span 1; }
    .gi-wide { grid-column: span 1; }

    .order-steps {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        transform: rotate(90deg);
        padding-top: 0;
        width: 40px;
        height: 40px;
    }

    .testimonials-track {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 150px;
    }

    .product-image {
        height: 220px;
    }

    .product-info {
        padding: 20px 24px 24px;
    }

    .hero-badge {
        font-size: 0.65rem;
        letter-spacing: 2.5px;
    }
}
