/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Outfit', sans-serif;
    background: #FDF6EE;
    color: #2D1F14;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── Custom Properties ── */
:root {
    --terracotta: #C4623A;
    --terracotta-dark: #A84E2C;
    --sand: #F5E6D3;
    --sand-light: #FDF6EE;
    --sand-dark: #E8D5C0;
    --brown-dark: #2D1F14;
    --brown-mid: #5C4033;
    --white: #FFFFFF;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(45,31,20,0.06);
    --shadow-md: 0 8px 32px rgba(45,31,20,0.10);
    --shadow-lg: 0 16px 64px rgba(45,31,20,0.14);
}

/* ── Typography ── */
h1, h2, h3 { font-family: 'DM Serif Display', serif; font-weight: 400; line-height: 1.1; }

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

/* ── Section Tags ── */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terracotta);
    background: rgba(196,98,58,0.10);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--brown-dark);
    margin-bottom: 20px;
}
.text-accent { color: var(--terracotta); }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-primary {
    background: var(--terracotta);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(196,98,58,0.35);
}
.btn-primary:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196,98,58,0.45);
}
.btn-secondary {
    background: var(--white);
    color: var(--brown-dark);
    border: 2px solid var(--sand-dark);
}
.btn-secondary:hover {
    border-color: var(--terracotta);
    color: var(--terracotta);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: var(--brown-dark);
    border: 2px solid var(--sand-dark);
}
.btn-outline:hover {
    border-color: var(--terracotta);
    color: var(--terracotta);
    transform: translateY(-2px);
}
.btn-large { padding: 18px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253,246,238,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(232,213,192,0.5);
    transition: all 0.3s ease;
}
.nav.scrolled {
    background: rgba(253,246,238,0.95);
    box-shadow: var(--shadow-sm);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Serif Display', serif;
    font-size: 1.3rem;
    color: var(--brown-dark);
}
.nav-logo-text { font-family: 'DM Serif Display', serif; }
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--brown-mid);
    transition: color 0.2s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terracotta);
    transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--terracotta); }
.nav-links a::after:hover { width: 100%; }
.nav-cta {
    background: var(--terracotta);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 100px;
    font-weight: 600;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--terracotta-dark); color: var(--white) !important; }

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--brown-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.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); }

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(253,246,238,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 24px;
        transform: translateY(-120%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: var(--shadow-md);
    }
    .nav-links.open { transform: translateY(0); }
    .nav-links a { font-size: 1.1rem; }
}

/* ── Hero ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
    background: var(--sand-light);
}
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.geo-circle {
    position: absolute;
    border-radius: 50%;
}
.geo-circle--1 {
    width: 500px;
    height: 500px;
    background: rgba(196,98,58,0.06);
    top: -100px;
    right: -100px;
}
.geo-circle--2 {
    width: 300px;
    height: 300px;
    background: rgba(196,98,58,0.04);
    bottom: 5%;
    left: -50px;
}
.geo-rect {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--sand-dark);
    border-radius: var(--radius-lg);
    rotate: 45deg;
    top: 15%;
    left: 8%;
    opacity: 0.6;
}
.geo-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 100px solid rgba(196,98,58,0.08);
    bottom: 20%;
    right: 12%;
}
.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 24px;
}
.hero-tag-line {
    width: 32px;
    height: 2px;
    background: var(--terracotta);
    border-radius: 2px;
}
.hero-headline {
    font-size: clamp(3rem, 6vw, 5.5rem);
    color: var(--brown-dark);
    line-height: 1.0;
    margin-bottom: 24px;
}
.hero-accent { color: var(--terracotta); }
.hero-accent-line {
    font-size: 0.8em;
    color: var(--terracotta);
}
.hero-desc {
    font-size: 1.15rem;
    color: var(--brown-mid);
    max-width: 480px;
    margin-bottom: 36px;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.hero-visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
}
.hero-img-stack {
    position: relative;
    width: 100%;
    max-width: 520px;
}
.hero-img {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.hero-img--main {
    width: 100%;
    aspect-ratio: 6/7.5;
}
.hero-img--float {
    position: absolute;
    bottom: -30px;
    left: -40px;
    width: 55%;
    aspect-ratio: 4/3;
    border: 6px solid var(--sand-light);
    z-index: 2;
}
.hero-badge {
    position: absolute;
    top: 24px;
    right: -20px;
    background: var(--terracotta);
    color: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 8px 24px rgba(196,98,58,0.4);
    z-index: 2;
}
@media (max-width: 900px) {
    .hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { order: -1; justify-content: center; }
    .hero-img-stack { max-width: 400px; }
    .hero-img--float { left: -20px; bottom: -20px; }
    .hero-badge { right: -10px; }
}
@media (max-width: 480px) {
    .hero { padding: 100px 20px 60px; }
    .hero-img-stack { max-width: 100%; }
    .hero-img--float { width: 50%; left: -10px; }
    .hero-actions { flex-direction: column; }
    .btn { justify-content: center; }
}

/* ── Marquee ── */
.marquee-section {
    background: var(--terracotta);
    padding: 18px 0;
    overflow: hidden;
}
.marquee-track {
    display: flex;
    gap: 24px;
    align-items: center;
    animation: marquee 30s linear infinite;
    width: max-content;
}
.marquee-item {
    font-family: 'DM Serif Display', serif;
    font-size: 1.1rem;
    color: var(--white);
    white-space: nowrap;
}
.marquee-dot {
    color: rgba(255,255,255,0.5);
    font-size: 0.6rem;
    flex-shrink: 0;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── Products ── */
.products {
    padding: 120px 24px;
    background: var(--sand-light);
}
.products .section-header {
    margin-bottom: 64px;
    max-width: 600px;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 24px;
}
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.product-card--large { grid-column: span 7; }
.product-card--wide { grid-column: span 8; }
.product-card:not(.product-card--large):not(.product-card--wide) { grid-column: span 4; }
.product-card-img {
    overflow: hidden;
    aspect-ratio: 16/10;
}
.product-card--large .product-card-img { aspect-ratio: 3/2; }
.product-card--wide .product-card-img { aspect-ratio: 2/1; }
.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-body {
    padding: 28px;
}
.product-card-body h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.4rem;
    color: var(--brown-dark);
    margin-bottom: 10px;
}
.product-card-body p {
    font-size: 0.95rem;
    color: var(--brown-mid);
    line-height: 1.6;
    margin-bottom: 16px;
}
.product-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--terracotta);
    transition: gap 0.2s;
}
.product-link:hover { gap: 10px; }
@media (max-width: 900px) {
    .product-card--large,
    .product-card--wide,
    .product-card:not(.product-card--large):not(.product-card--wide) {
        grid-column: span 12;
    }
}

/* ── About ── */
.about {
    padding: 120px 24px;
    background: var(--sand);
    position: relative;
    overflow: hidden;
}
.about::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(196,98,58,0.05);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    pointer-events: none;
}
.about-layout {
    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);
    aspect-ratio: 5/6;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 50%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 6px solid var(--sand);
    box-shadow: var(--shadow-md);
    aspect-ratio: 6/5;
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-shape {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--terracotta);
    border-radius: var(--radius-md);
    rotate: 30deg;
    top: -30px;
    left: -30px;
    z-index: -1;
    opacity: 0.15;
}
.about-content .section-tag { margin-bottom: 16px; }
.about-content .section-title { margin-bottom: 24px; }
.about-text {
    font-size: 1.05rem;
    color: var(--brown-mid);
    line-height: 1.8;
    margin-bottom: 20px;
}
.about-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.stat-number { font-size: 1.5rem; }
.stat-label {
    font-size: 0.85rem;
    color: var(--brown-mid);
    font-weight: 500;
}
@media (max-width: 900px) {
    .about-layout { grid-template-columns: 1fr; gap: 60px; }
    .about-visual { max-width: 480px; }
    .about-img-accent { right: -20px; bottom: -20px; }
}

/* ── CTA Section ── */
.cta-section {
    padding: 120px 24px;
    background: var(--brown-dark);
    position: relative;
    overflow: hidden;
}
.cta-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.cta-shape {
    position: absolute;
    border-radius: 50%;
}
.cta-shape--1 {
    width: 400px;
    height: 400px;
    background: rgba(196,98,58,0.15);
    top: -150px;
    left: -100px;
}
.cta-shape--2 {
    width: 250px;
    height: 250px;
    background: rgba(245,230,211,0.05);
    bottom: -80px;
    right: 5%;
}
.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.cta-tag { color: var(--sand) !important; background: rgba(245,230,211,0.15) !important; }
.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 20px;
}
.cta-desc {
    font-size: 1.1rem;
    color: var(--sand);
    margin-bottom: 40px;
    line-height: 1.7;
}
.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-actions .btn-outline {
    border-color: rgba(245,230,211,0.3);
    color: var(--sand);
}
.cta-actions .btn-outline:hover {
    border-color: var(--sand);
    color: var(--brown-dark);
}

/* ── Visit ── */
.visit {
    padding: 120px 24px;
    background: var(--sand-light);
}
.visit-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: start;
}
.visit-info .section-tag { margin-bottom: 16px; }
.visit-info .section-title { margin-bottom: 32px; }
.visit-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}
.visit-detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.visit-icon {
    width: 48px;
    height: 48px;
    background: var(--sand);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    flex-shrink: 0;
}
.visit-detail strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--terracotta);
    margin-bottom: 4px;
}
.visit-detail p {
    font-size: 1rem;
    color: var(--brown-mid);
    line-height: 1.5;
}
.visit-detail a {
    color: var(--brown-dark);
    transition: color 0.2s;
}
.visit-detail a:hover { color: var(--terracotta); }
.visit-map { border-radius: var(--radius-md); overflow: hidden; }
.visit-hours-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
}
.visit-hours-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: var(--brown-dark);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--sand);
}
.hours-list { display: flex; flex-direction: column; gap: 12px; }
.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
}
.hours-day { color: var(--brown-dark); font-weight: 500; }
.hours-time { color: var(--brown-mid); }
.hours-closed .hours-time { color: var(--terracotta); font-weight: 600; }
.hours-note {
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--brown-mid);
    font-style: italic;
}
@media (max-width: 900px) {
    .visit-layout { grid-template-columns: 1fr; }
    .visit-hours-card { position: static; }
}

/* ── Contact ── */
.contact {
    padding: 120px 24px;
    background: var(--sand);
}
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.contact-info .section-tag { margin-bottom: 16px; }
.contact-info .section-title { margin-bottom: 20px; }
.contact-desc {
    font-size: 1.05rem;
    color: var(--brown-mid);
    line-height: 1.7;
    margin-bottom: 36px;
}
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-method {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}
.contact-method:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}
.contact-method-icon {
    width: 48px;
    height: 48px;
    background: rgba(196,98,58,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    flex-shrink: 0;
}
.contact-method strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--terracotta);
    margin-bottom: 2px;
}
.contact-method p {
    font-size: 1rem;
    color: var(--brown-dark);
}
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brown-mid);
}
.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--sand-dark);
    border-radius: var(--radius-sm);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: var(--brown-dark);
    background: var(--sand-light);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--terracotta);
    box-shadow: 0 0 0 4px rgba(196,98,58,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 40px;
    gap: 16px;
}
.form-success.show { display: flex; }
.success-icon { margin-bottom: 8px; }
.form-success h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
    color: var(--brown-dark);
}
.form-success p {
    color: var(--brown-mid);
    font-size: 1rem;
}
@media (max-width: 900px) {
    .contact-layout { grid-template-columns: 1fr; gap: 48px; }
    .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .contact-form-wrapper { padding: 24px; }
}

/* ── Footer ── */
.footer {
    background: var(--brown-dark);
    padding: 64px 24px 32px;
    color: var(--sand);
}
.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Serif Display', serif;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 12px;
}
.footer-brand p {
    font-size: 0.95rem;
    color: rgba(245,230,211,0.7);
    line-height: 1.6;
    max-width: 280px;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-links a {
    font-size: 0.95rem;
    color: rgba(245,230,211,0.7);
    transition: color 0.2s, padding-left 0.2s;
}
.footer-links a:hover {
    color: var(--terracotta);
    padding-left: 8px;
}
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(245,230,211,0.7);
}
.footer-contact a {
    color: rgba(245,230,211,0.7);
    transition: color 0.2s;
}
.footer-contact a:hover { color: var(--terracotta); }
.footer-bottom {
    border-top: 1px solid rgba(245,230,211,0.15);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(245,230,211,0.5);
}
@media (max-width: 768px) {
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Scroll Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s 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; }
