/* --- Reset & Variables --- */
:root {
    --color-sand: #F2E8D5;
    --color-sand-light: #F9F5ED;
    --color-terracotta: #C05640;
    --color-terracotta-dark: #9A402D;
    --color-charcoal: #2C2C2C;
    --color-text: #3D3D3D;
    --color-text-light: #666666;
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Lato', sans-serif;
    
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-sand);
    color: var(--color-text);
    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;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-charcoal);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: var(--spacing-md);
}

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

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-serif);
    font-style: italic;
}

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

/* --- Layout Utilities --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section-padding {
    padding: var(--spacing-xl) 0;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    font-weight: 700;
    border: 1px solid var(--color-charcoal);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

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

.btn-outline {
    background-color: transparent;
    color: var(--color-charcoal);
    border-color: var(--color-charcoal);
}

.btn-outline:hover {
    background-color: var(--color-charcoal);
    color: white;
}

.btn-text {
    background: none;
    border: none;
    color: var(--color-charcoal);
    padding: 1rem;
    font-size: 0.9rem;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.btn-text:hover {
    color: var(--color-terracotta);
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(242, 232, 213, 0.95);
    backdrop-filter: blur(5px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 1.2rem 0;
}

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

.logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--color-charcoal);
}

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

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text);
}

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

.btn-nav {
    background-color: var(--color-charcoal);
    color: white !important;
    padding: 0.6rem 1.2rem;
    border-radius: 2px;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-charcoal);
    transition: 0.3s;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-sand);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.4s ease-in-out;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu a {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--color-charcoal);
}

/* --- Hero Section --- */
.hero {
    padding-top: 120px;
    padding-bottom: var(--spacing-xl);
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-color: var(--color-sand);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    padding-right: 2rem;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    width: 100%;
    height: 600px;
    overflow: hidden;
    border-radius: 4px;
}

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

.hero-image:hover img {
    transform: scale(1.03);
}

.hero-stamp {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background-color: var(--color-terracotta);
    color: white;
    padding: 1.5rem;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.2;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.hero-cta {
    margin-top: 2rem;
}

/* --- About / Intro --- */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--color-text-light);
}

.intro-text h2 {
    margin-bottom: 1.5rem;
}

.intro-image-stack {
    position: relative;
    height: 500px;
}

.stack-img {
    position: absolute;
    object-fit: cover;
    box-shadow: 20px 20px 0px rgba(192, 86, 64, 0.1);
}

.img-1 {
    width: 60%;
    height: 70%;
    top: 0;
    right: 0;
    z-index: 1;
}

.img-2 {
    width: 50%;
    height: 40%;
    bottom: 0;
    left: 0;
    z-index: 2;
    border: 5px solid var(--color-sand);
}

/* --- Selection / Cards --- */
.selection-section {
    background-color: var(--color-sand-light);
}

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

.section-header h2 {
    color: var(--color-charcoal);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.card {
    background: white;
    padding: 3rem 2rem;
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

.card-icon {
    margin-bottom: 1.5rem;
    color: var(--color-terracotta);
}

.card h3 {
    font-size: 1.25rem;
    color: var(--color-charcoal);
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-style: normal;
    margin-bottom: 1rem;
}

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

/* --- Atmosphere --- */
.atmosphere-section {
    background-color: var(--color-charcoal);
    color: var(--color-sand);
}

.atmosphere-section h2, 
.atmosphere-section .eyebrow {
    color: var(--color-sand);
}

.atmosphere-section .eyebrow {
    color: var(--color-terracotta);
}

.atmosphere-section p {
    color: #aaa;
    margin-bottom: 2rem;
    max-width: 500px;
}

.atm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.atm-image {
    height: 500px;
}

.atm-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

/* --- Visit / Contact --- */
.visit-section {
    background-color: var(--color-sand);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.visit-info h2 {
    margin-top: 0.5rem;
    margin-bottom: 3rem;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h4 {
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    color: var(--color-terracotta);
    margin-bottom: 0.5rem;
}

.info-block p, .info-block a {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--color-charcoal);
}

.info-block a:hover {
    text-decoration: underline;
}

.hours-block ul li {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 0.8rem 0;
    font-family: var(--font-serif);
    font-size: 1.1rem;
}

.map-container {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.map-link {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 44, 44, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.map-overlay span {
    background: white;
    color: var(--color-charcoal);
    padding: 1rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

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

.map-link:hover .map-overlay {
    background: rgba(44, 44, 44, 0.2);
}

.map-link:hover .map-overlay span {
    opacity: 1;
    transform: translateY(0);
}

/* --- Footer --- */
.footer {
    background-color: var(--color-charcoal);
    color: white;
    padding: 4rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-brand h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.footer-brand p {
    color: #888;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-legal {
    text-align: right;
}

.footer-legal p {
    color: #888;
    font-size: 0.85rem;
}

.footer-legal .small {
    font-size: 0.75rem;
    margin-top: 0.5rem;
    opacity: 0.6;
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .hero-container, 
    .intro-grid, 
    .atm-grid, 
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-image-wrapper {
        order: -1;
    }
    
    .hero-image {
        height: 400px;
    }
    
    .intro-image-stack {
        height: 400px;
        margin-top: 2rem;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-content {
        padding-right: 0;
        text-align: center;
    }
    
    .hero-cta {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-legal {
        text-align: center;
    }
}

@media (max-width: 600px) {
    :root {
        --spacing-xl: 5rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .hero-stamp {
        width: 100px;
        height: 100px;
        font-size: 0.7rem;
        bottom: -20px;
        left: 0;
    }
}
