/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --terracotta: #C0603A;
    --terracotta-dark: #A84E2D;
    --terracotta-light: #D4845E;
    --sand: #FDF6EE;
    --sand-mid: #F5E6D3;
    --sand-dark: #E8D5C0;
    --cream: #FFFAF5;
    --text: #3D2B1F;
    --text-light: #6B5344;
    --text-muted: #9A8070;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(61, 43, 31, 0.06);
    --shadow-md: 0 4px 20px rgba(61, 43, 31, 0.10);
    --shadow-lg: 0 8px 40px rgba(61, 43, 31, 0.14);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-xl: 48px;
    --font-heading: 'Lora', Georgia, serif;
    --font-body: 'Nunito', system-ui, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

a { color: var(--terracotta); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--terracotta-dark); }

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

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; line-height: 1.2; color: var(--text); }

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terracotta);
    background: rgba(192, 96, 58, 0.10);
    border: 1px solid rgba(192, 96, 58, 0.20);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
}

.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-subtitle { margin: 0 auto; }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 100px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    line-height: 1;
}

.btn-primary {
    background: var(--terracotta);
    color: var(--white);
    border-color: var(--terracotta);
}
.btn-primary:hover {
    background: var(--terracotta-dark);
    border-color: var(--terracotta-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--white);
    color: var(--terracotta);
    border-color: var(--white);
}
.btn-secondary:hover {
    background: var(--sand-mid);
    color: var(--terracotta-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--terracotta);
    border-color: var(--terracotta);
}
.btn-outline:hover {
    background: var(--terracotta);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Header ── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 246, 238, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(192, 96, 58, 0.08);
    transition: all var(--transition);
}
.header.scrolled {
    background: rgba(253, 246, 238, 0.95);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.15rem;
    color: var(--text);
    text-decoration: none;
}
.logo:hover { color: var(--terracotta); }
.logo-icon { flex-shrink: 0; }

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

.nav-links a {
    padding: 8px 16px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-light);
    border-radius: 100px;
    transition: all var(--transition);
}
.nav-links a:hover { color: var(--terracotta); background: rgba(192, 96, 58, 0.08); }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.hamburger {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    position: relative;
    transition: all var(--transition);
}
.hamburger::before, .hamburger::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--text);
    left: 0;
    transition: all var(--transition);
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #FDF6EE 0%, #F8DCC4 30%, #E8A87C 60%, #D4845E 80%, #C0603A 100%);
}

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

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: float 8s ease-in-out infinite;
}
.orb-1 { width: 500px; height: 500px; background: #FDEBD0; top: -10%; right: -5%; animation-delay: 0s; }
.orb-2 { width: 350px; height: 350px; background: #E8A87C; bottom: 5%; left: -5%; animation-delay: 2s; }
.orb-3 { width: 200px; height: 200px; background: #C0603A; top: 40%; left: 30%; opacity: 0.2; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.05); }
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(192, 96, 58, 0.06) 1px, transparent 1px);
    background-size: 24px 24px;
}

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

.hero-content { z-index: 1; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--terracotta-dark);
    margin-bottom: 24px;
    border: 1px solid rgba(192, 96, 58, 0.15);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.1;
}
.hero-title em {
    font-style: italic;
    color: var(--terracotta);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 480px;
    line-height: 1.8;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}
.stat { text-align: left; }
.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text);
}
.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}
.stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(192, 96, 58, 0.25);
}

.hero-image {
    position: relative;
    z-index: 1;
}

.image-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-card--main {
    width: 100%;
    aspect-ratio: 520/640;
}
.image-card--small {
    position: absolute;
    width: 55%;
    aspect-ratio: 300/200;
    bottom: -40px;
    left: -30px;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}
.image-card--small--right {
    right: -20px;
    left: auto;
    bottom: -20px;
    width: 50%;
    z-index: 3;
}

.image-card__badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--terracotta);
    box-shadow: var(--shadow-md);
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ── Section base ── */
.section {
    padding: 100px 0;
}
.section:nth-child(even) { background: var(--cream); }

/* ── Products ── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid rgba(192, 96, 58, 0.06);
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-card__img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.product-card__img-label {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--white);
    color: var(--terracotta);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 6px 14px;
    border-radius: 100px;
    box-shadow: var(--shadow-sm);
}

.product-card__body { padding: 24px; }
.product-card__title {
    font-size: 1.25rem;
    margin-bottom: 10px;
}
.product-card__desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ── About ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-images {
    position: relative;
    height: 540px;
}

.about-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: absolute;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.about-img--1 {
    width: 60%;
    height: 70%;
    top: 0;
    left: 0;
}
.about-img--2 {
    width: 55%;
    height: 50%;
    bottom: 0;
    right: 0;
    z-index: 2;
}
.about-img--accent {
    width: 100px;
    height: 100px;
    background: var(--terracotta);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 35%;
    right: -10px;
    z-index: 3;
    box-shadow: var(--shadow-md);
}

.about-content .section-tag { margin-bottom: 16px; }
.about-content .section-title { margin-bottom: 20px; }
.about-text {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 1.02rem;
}

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

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.about-feature__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(192, 96, 58, 0.10);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-feature strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 2px;
}
.about-feature span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ── Visit ── */
.visit { background: var(--cream); }

.visit-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(192, 96, 58, 0.06);
}

.visit-card__content {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
}
.visit-card__content .section-tag { margin-bottom: 16px; }
.visit-card__content .section-title { margin-bottom: 16px; }
.visit-text {
    color: var(--text-light);
    margin-bottom: 32px;
    font-size: 1.02rem;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.visit-detail {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.visit-detail__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(192, 96, 58, 0.10);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}
.visit-detail strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 2px;
}
.visit-detail span {
    font-size: 0.9rem;
    color: var(--text-light);
}
.visit-detail a { color: var(--terracotta); }
.visit-detail a:hover { color: var(--terracotta-dark); text-decoration: underline; }

.visit-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: auto;
}

.visit-card__image {
    min-height: 100%;
    min-height: 400px;
}
.visit-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Contact ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-text {
    color: var(--text-light);
    margin-bottom: 32px;
    font-size: 1.02rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text);
    text-decoration: none;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.contact-method:hover {
    background: rgba(192, 96, 58, 0.06);
    color: var(--terracotta);
}
.contact-method__icon {
    width: 44px;
    height: 44px;
    background: rgba(192, 96, 58, 0.10);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--terracotta);
}

/* ── Form ── */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(192, 96, 58, 0.06);
}
.contact-form__title {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}
.form-group label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
}
.form-group input,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 12px 16px;
    border: 2px solid var(--sand-dark);
    border-radius: var(--radius-sm);
    background: var(--sand);
    color: var(--text);
    transition: all var(--transition);
    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.10);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 16px 20px;
    background: rgba(192, 96, 58, 0.08);
    border-radius: var(--radius-sm);
    color: var(--terracotta-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

/* ── Footer ── */
.footer {
    background: var(--text);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: 0.95rem; line-height: 1.7; max-width: 280px; }

.footer-nav h4,
.footer-contact h4 {
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.footer-nav ul,
.footer-contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color var(--transition);
}
.footer-nav a:hover,
.footer-contact a:hover { color: var(--sand); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
}
.footer-bottom a { color: rgba(255, 255, 255, 0.6); }
.footer-bottom a:hover { color: var(--sand); }

/* ── Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; text-align: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-image { max-width: 500px; margin: 0 auto; }
    .image-card--small { left: 0; right: 0; margin: 0 auto; }
    .image-card--small--right { right: 0; }

    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; }
    .about-images { height: 400px; max-width: 500px; margin: 0 auto; }
    .visit-card { grid-template-columns: 1fr; }
    .visit-card__image { min-height: 300px; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: rgba(253, 246, 238, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        border-bottom: 1px solid rgba(192, 96, 58, 0.1);
        box-shadow: var(--shadow-md);
        transform: translateY(-120%);
        opacity: 0;
        transition: all var(--transition);
        pointer-events: none;
    }
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav-links a { width: 100%; text-align: center; padding: 12px; }
    .nav-toggle { display: block; }

    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
    .hero-image { display: none; }

    .products-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .about-images { height: 320px; }
    .about-img--1 { width: 65%; height: 65%; }
    .about-img--2 { width: 55%; height: 50%; }
    .about-img--accent { width: 70px; height: 70px; }
    .about-img--accent svg { width: 32px; height: 32px; }

    .visit-card__content { padding: 40px 28px; }
    .visit-actions { flex-direction: column; }
    .visit-actions .btn { width: 100%; justify-content: center; }

    .contact-form-wrap { padding: 28px; }
    .form-row { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .section { padding: 70px 0; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .stat-divider { width: 40px; height: 1px; }
    .stat { text-align: center; }
}
