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

:root {
    --terracotta: #C0603A;
    --terracotta-dark: #A04E2E;
    --terracotta-light: #D4845A;
    --sand: #F5E6D3;
    --sand-light: #FBF5EE;
    --sand-dark: #E8D5C0;
    --brown-dark: #2C1810;
    --brown-mid: #5C3A28;
    --cream: #FFF9F5;
    --white: #FFFFFF;
    --text-dark: #1A0F0A;
    --text-mid: #4A3528;
    --text-light: #7A6558;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', system-ui, sans-serif;
    --shadow-sm: 0 2px 8px rgba(44, 24, 16, 0.06);
    --shadow-md: 0 8px 30px rgba(44, 24, 16, 0.10);
    --shadow-lg: 0 20px 60px rgba(44, 24, 16, 0.12);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul { list-style: none; }

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

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 249, 245, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(192, 96, 58, 0.08);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
    background: rgba(255, 249, 245, 0.95);
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo--light .logo-text {
    color: var(--sand);
}

.logo-mark {
    width: 44px;
    height: 44px;
    background: var(--terracotta);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    color: var(--white);
    letter-spacing: -0.5px;
    transform: rotate(-3deg);
    transition: transform 0.3s ease;
}

.logo:hover .logo-mark {
    transform: rotate(0deg);
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2;
    color: var(--text-dark);
}

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

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-mid);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terracotta);
    border-radius: 2px;
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    background: var(--terracotta);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border-radius: 100px;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.nav-cta:hover {
    background: var(--terracotta-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(192, 96, 58, 0.3);
}

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

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 2px solid var(--sand-dark);
    padding: 24px;
    flex-direction: column;
    gap: 8px;
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    transition: background 0.2s ease, color 0.2s ease;
}

.mobile-menu a:hover {
    background: var(--sand);
    color: var(--terracotta);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 76px;
    background: var(--sand);
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.geo-circle {
    position: absolute;
    border-radius: 50%;
}

.geo-circle--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(192, 96, 58, 0.08) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}

.geo-circle--2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(192, 96, 58, 0.06) 0%, transparent 70%);
    bottom: 10%;
    left: -50px;
}

.geo-rect {
    position: absolute;
    border-radius: var(--radius-lg);
}

.geo-rect--1 {
    width: 200px;
    height: 200px;
    background: rgba(192, 96, 58, 0.05);
    transform: rotate(45deg);
    top: 15%;
    left: 5%;
}

.geo-rect--2 {
    width: 120px;
    height: 120px;
    background: rgba(44, 24, 16, 0.04);
    transform: rotate(30deg);
    bottom: 20%;
    right: 10%;
}

.geo-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid rgba(192, 96, 58, 0.04);
    top: 25%;
    right: 3%;
    transform: rotate(-15deg);
}

.geo-dot {
    position: absolute;
    border-radius: 50%;
    background: var(--terracotta);
    opacity: 0.12;
}

.geo-dot--1 { width: 12px; height: 12px; top: 20%; left: 15%; }
.geo-dot--2 { width: 8px; height: 8px; top: 60%; left: 8%; opacity: 0.08; }
.geo-dot--3 { width: 16px; height: 16px; bottom: 30%; right: 25%; opacity: 0.10; }

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    padding-top: 40px;
    padding-bottom: 120px;
}

.hero-content {
    max-width: 540px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--white);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--terracotta);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
    margin-bottom: 28px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--terracotta);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.6rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.headline-accent {
    color: var(--terracotta);
    position: relative;
}

.headline-accent::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(192, 96, 58, 0.15);
    border-radius: 4px;
    z-index: -1;
}

.hero-sub {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-mid);
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--terracotta);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(192, 96, 58, 0.3);
}

.btn-primary:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(192, 96, 58, 0.35);
}

.btn-secondary {
    background: var(--white);
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--terracotta);
}

.btn-light {
    background: var(--white);
    color: var(--terracotta);
}

.btn-light:hover {
    background: var(--sand);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

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

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

.stat {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--terracotta);
}

.stat-label {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--sand-dark);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-img-stack {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero-img {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-img--main {
    width: 100%;
}

.hero-img--main img,
.hero-img--float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img--float {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 55%;
    border: 6px solid var(--sand);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.hero-float-card {
    position: absolute;
    bottom: 60px;
    right: -20px;
    background: var(--white);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ===== SECTION COMMON ===== */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 16px;
    position: relative;
    padding: 0 16px;
}

.section-tag::before,
.section-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 24px;
    height: 1px;
    background: var(--terracotta);
    opacity: 0.4;
}

.section-tag::before { left: -4px; }
.section-tag::after { right: -4px; }

.section-tag.light {
    color: var(--sand);
}

.section-tag.light::before,
.section-tag.light::after {
    background: var(--sand);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 20px;
}

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

.title-accent {
    color: var(--terracotta);
}

.title-accent-light {
    color: var(--sand);
}

.section-sub {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-mid);
}

.section-sub.light {
    color: rgba(245, 230, 211, 0.8);
}

/* ===== PRODUCTS ===== */
.products {
    padding: 100px 0;
    background: var(--cream);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.product-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--terracotta);
    z-index: 2;
}

.product-img {
    height: 220px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.product-info {
    padding: 28px;
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.product-info p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-mid);
    margin-bottom: 18px;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--terracotta);
    transition: gap 0.3s ease;
}

.product-link:hover {
    gap: 10px;
}

/* ===== ABOUT ===== */
.about {
    padding: 100px 0;
    background: var(--sand);
    position: relative;
    overflow: hidden;
}

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

.about-visual {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 5px solid var(--sand);
    box-shadow: var(--shadow-md);
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-geo-shape {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: var(--terracotta);
    border-radius: var(--radius-md);
    opacity: 0.1;
    transform: rotate(25deg);
}

.about-content {
    max-width: 480px;
}

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

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.about-feature h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ===== SERVICES ===== */
.services {
    padding: 100px 0;
    background: var(--brown-dark);
    position: relative;
    overflow: hidden;
}

.services-bg-shape {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(192, 96, 58, 0.15) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    border-radius: 50%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(192, 96, 58, 0.3);
    transform: translateY(-4px);
}

.service-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(192, 96, 58, 0.2);
    line-height: 1;
    margin-bottom: 16px;
}

.service-icon {
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--sand);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(245, 230, 211, 0.65);
}

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 80px 0;
    background: var(--terracotta);
    position: relative;
    overflow: hidden;
}

.cta-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.cta-circle--1 {
    width: 400px;
    height: 400px;
    top: -150px;
    left: -100px;
}

.cta-circle--2 {
    width: 250px;
    height: 250px;
    bottom: -80px;
    right: 10%;
}

.cta-rect {
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.04);
    transform: rotate(45deg);
    bottom: -40px;
    right: 25%;
    border-radius: var(--radius-md);
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.cta-content {
    flex: 1;
    max-width: 560px;
}

.cta-headline {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.cta-accent {
    color: var(--sand);
}

.cta-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 249, 245, 0.8);
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* ===== CONTACT ===== */
.contact {
    padding: 100px 0;
    background: var(--cream);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-left {
    max-width: 460px;
}

.contact-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-mid);
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-icon {
    width: 52px;
    height: 52px;
    background: var(--sand);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 2px;
}

.contact-value {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-value:hover {
    color: var(--terracotta);
}

/* Form */
.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--sand-dark);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-dark);
    background: var(--sand-light);
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--terracotta);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(192, 96, 58, 0.08);
}

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

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

.form-success {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: rgba(192, 96, 58, 0.06);
    border-radius: var(--radius-sm);
    margin-top: 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--terracotta);
}

.form-success.active {
    display: flex;
}

/* ===== MAP ===== */
.map-section {
    background: var(--sand-dark);
}

.map-section iframe {
    filter: saturate(0.6) contrast(1.05);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--brown-dark);
    padding: 80px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(245, 230, 211, 0.5);
    max-width: 260px;
}

.footer-links h4,
.footer-contact h4,
.footer-hours h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--sand);
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    font-size: 0.9rem;
    color: rgba(245, 230, 211, 0.55);
    padding: 6px 0;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a:hover {
    color: var(--terracotta-light);
    padding-left: 6px;
}

.footer-contact p {
    font-size: 0.9rem;
    color: rgba(245, 230, 211, 0.55);
    line-height: 1.8;
}

.footer-contact a {
    color: rgba(245, 230, 211, 0.55);
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: var(--terracotta-light);
}

.footer-hours p {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.9rem;
    color: rgba(245, 230, 211, 0.55);
    padding: 6px 0;
}

.hours-day {
    font-weight: 500;
}

.hours-time {
    color: rgba(245, 230, 211, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(245, 230, 211, 0.35);
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    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-container {
        gap: 40px;
    }

    .hero-img--float {
        left: -20px;
        bottom: -30px;
    }

    .about-container {
        gap: 50px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-bottom: 100px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-sub {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        justify-content: center;
        order: -1;
    }

    .hero-img-stack {
        max-width: 360px;
    }

    .hero-img--float {
        left: -10px;
        bottom: -20px;
    }

    .hero-float-card {
        right: -10px;
        bottom: 40px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .about-visual {
        max-width: 480px;
        margin: 0 auto;
    }

    .about-content {
        max-width: 100%;
        text-align: center;
    }

    .about-features {
        align-items: center;
    }

    .about-feature {
        max-width: 320px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .cta-container {
        flex-direction: column;
        text-align: center;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }

    .cta-actions .btn {
        justify-content: center;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-left {
        max-width: 100%;
        text-align: center;
    }

    .contact-info {
        align-items: center;
    }

    .contact-form {
        padding: 28px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-links a:hover {
        padding-left: 0;
    }

    .footer-hours p {
        justify-content: center;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding-top: 76px;
    }

    .hero-img--float {
        display: none;
    }

    .hero-float-card {
        display: none;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .products,
    .about,
    .services,
    .contact {
        padding: 70px 0;
    }

    .product-img {
        height: 180px;
    }

    .product-info {
        padding: 20px;
    }

    .service-card {
        padding: 28px 24px;
    }
}
