/* --- Reset & Base --- */
:root {
    --color-terracotta: #C05640;
    --color-terracotta-dark: #9A4330;
    --color-sand: #F5F0E6;
    --color-sand-dark: #E6DFD0;
    --color-text-dark: #2C2420;
    --color-text-light: #6B5E57;
    --color-white: #FFFFFF;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Lato', sans-serif;
    --shadow-soft: 0 10px 40px -10px rgba(44, 36, 32, 0.1);
    --shadow-hover: 0 20px 50px -10px rgba(44, 36, 32, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text-dark);
    background-color: var(--color-sand);
    line-height: 1.6;
    -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 2rem;
}

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

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.eyebrow {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-terracotta);
    margin-bottom: 1rem;
    font-weight: 700;
}

.lead {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 2px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

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

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

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

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

.btn-nav {
    background-color: var(--color-terracotta);
    color: var(--color-white);
    padding: 0.6rem 1.2rem;
}

.btn-nav:hover {
    background-color: var(--color-terracotta-dark);
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(245, 240, 230, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.6rem 0;
    box-shadow: var(--shadow-soft);
}

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

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-dark);
}

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

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--color-text-dark);
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 2px;
    background-color: var(--color-text-dark);
    transition: all 0.3s ease;
}

/* --- Hero --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-image: url('https://images.pexels.com/photos/157213/pexels-photo-157213.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(44, 36, 32, 0.4), rgba(44, 36, 32, 0.7));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 1.5rem;
}

.hero h1 {
    color: var(--color-white);
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.hero-sub {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-white);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

.scroll-indicator .line {
    width: 1px;
    height: 40px;
    background-color: var(--color-white);
    animation: scrollLine 1.5s infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* --- Sections --- */
.section {
    padding: 6rem 0;
}

.bg-sand {
    background-color: var(--color-sand);
}

.bg-white {
    background-color: var(--color-white);
}

.text-center {
    text-align: center;
}

.section-header {
    margin-bottom: 4rem;
}

.section-desc {
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* --- Split Layout --- */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-list {
    margin-top: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.check {
    color: var(--color-terracotta);
    font-weight: bold;
}

.image-block {
    position: relative;
}

.img-main {
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.floating-card {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    background: var(--color-white);
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-soft);
    border-left: 4px solid var(--color-terracotta);
}

.fc-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-light);
}

.fc-value {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-text-dark);
    margin-top: 0.25rem;
}

/* --- Grid Cards --- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--color-white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

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

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

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

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

.card-body {
    padding: 2rem;
}

.card-body h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.card-body p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.mt-4 {
    margin-top: 2rem;
}

.italic-text {
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--color-text-light);
    font-size: 1.1rem;
}

/* --- Parallax --- */
.parallax {
    position: relative;
    height: 400px;
    background-image: url('https://images.pexels.com/photos/5531017/pexels-photo-5531017.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=600');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 36, 32, 0.6);
}

.parallax .container {
    position: relative;
    z-index: 1;
    color: var(--color-white);
}

.parallax h2 {
    color: var(--color-white);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    max-width: 800px;
    margin-bottom: 1rem;
}

.parallax p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* --- Contact --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: var(--color-white);
    padding: 3rem;
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2.5rem 0;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-item .icon {
    font-size: 1.5rem;
    color: var(--color-terracotta);
}

.info-item strong {
    display: block;
    margin-bottom: 0.25rem;
    font-family: var(--font-serif);
    font-size: 1.1rem;
}

.info-item p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.hours {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-sand-dark);
}

.hours p {
    margin-top: 0.5rem;
    color: var(--color-text-light);
}

/* --- Form --- */
.contact-form-wrapper h3 {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--color-sand-dark);
    border-radius: 2px;
    font-family: var(--font-sans);
    font-size: 1rem;
    background: var(--color-sand);
    color: var(--color-text-dark);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-terracotta);
    background: var(--color-white);
}

.full-width {
    width: 100%;
}

.form-status {
    margin-top: 1rem;
    font-size: 0.9rem;
    text-align: center;
}

.form-status.success {
    color: #2d6a4f;
}

.form-status.error {
    color: var(--color-terracotta);
}

/* --- Footer --- */
.footer {
    background-color: var(--color-text-dark);
    color: var(--color-sand);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer h3 {
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer p {
    color: rgba(245, 240, 230, 0.7);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--color-sand);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(245, 240, 230, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(245, 240, 230, 0.5);
}

/* --- Animations --- */
.reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-up { transform: translateY(30px); }
.reveal-left { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }

.revealed {
    opacity: 1;
    transform: translate(0, 0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }

/* --- Responsive --- */
@media (max-width: 968px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .image-block {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: var(--color-sand);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 1rem 0;
    }
    
    .nav-links a {
        font-size: 1.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .floating-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 1rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}
