@charset "utf-8";
/* 

CSS Document 

TemplateMo 611 Maison Doree

https://templatemo.com/tm-611-maison-doree

*/

:root {
	--color-cream: #FFFBF5;
	--color-ivory: #F7F3ED;
	--color-warm-white: #FEFCF9;
	--color-gold: #B8860B;
	--color-gold-light: #D4A853;
	--color-gold-dark: #8B6914;
	--color-charcoal: #1C1C1C;
	--color-charcoal-soft: #3A3A3A;
	--color-taupe: #A69080;
	--color-taupe-light: #C4B5A5;

	--font-display: 'Cormorant Garamond', Georgia, serif;
	--font-body: 'DM Sans', -apple-system, sans-serif;

	--space-xs: 0.5rem;
	--space-sm: 1rem;
	--space-md: 2rem;
	--space-lg: 4rem;
	--space-xl: 6rem;
	--space-2xl: 10rem;
}

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

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-body);
	font-size: 18px;
	line-height: 1.6;
	color: var(--color-charcoal);
	background-color: var(--color-cream);
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: inherit;
	text-decoration: none;
}

/* Typography */
.heading-display {
	font-family: var(--font-display);
	font-weight: 300;
	line-height: 1.1;
	letter-spacing: -0.02em;
}

.heading-editorial {
	font-family: var(--font-display);
	font-weight: 400;
	font-style: italic;
	line-height: 1.2;
}

.text-label {
	font-family: var(--font-body);
	font-size: 0.85rem;
	font-weight: 500;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--color-taupe);
}

.text-body {
	font-family: var(--font-body);
	font-size: 1.1rem;
	line-height: 1.7;
	color: var(--color-charcoal-soft);
}

/* Layout Utilities */
.container {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 var(--space-md);
}

.container--narrow {
	max-width: 900px;
}

.container--wide {
	max-width: 1600px;
}

/* ========================================
   HEADER / NAVIGATION (SMALLER & CLEAN)
   ======================================== */

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	padding: 0.25rem 0;              /* ⬅️ reduced a lot */
	background: linear-gradient(to right, #ffffff, #A34318);
	transition: background 0.4s ease, padding 0.4s ease;
	border-bottom: 3px solid #B8860B;
	box-shadow: 0 8px 20px rgba(163, 67, 24, 0.15);
}

.site-header {
	filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.12));
}

/* remove overlay */
.site-header::before {
	display: none;
}

/* scrolled state */
.site-header.scrolled {
	background-color: #ffffff;
	padding: 0.2rem 0;               /* ⬅️ even smaller on scroll */
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}



/* inner header layout */
.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

/* ========================================
   LOGO
   ======================================== */

.logo {
	display: flex;
	align-items: center;
	gap: 10px;                       /* ⬅️ reduced gap */
	text-decoration: none;
	padding: 2px 6px;                /* ⬅️ reduced padding */
	font-family: var(--font-display);
}

.logo img {
	height: 56px;                    /* ⬅️ BIGGEST FIX (was 80px) */
	width: auto;
	filter: drop-shadow(0 3px 6px rgba(75, 43, 25, 0.25));
}

/* logo text */
.logo-text {
	font-size: 22px;                 /* ⬅️ reduced */
	font-weight: 700;
	letter-spacing: 0.4px;
	color: #4b2b19;
	line-height: 1.05;
}

.logo-text span {
	display: block;
	font-size: 15px;                 /* ⬅️ reduced */
	font-weight: 600;
	letter-spacing: 0.8px;
	color: #6b3f24;
}

/* ========================================
   NAVIGATION
   ======================================== */

.nav-main {
	display: flex;
	align-items: center;
	gap: 3.0rem;                     /* ⬅️ tighter spacing */
	height: auto;
}

/* right nav links */
.nav-main a {
	color: #ffffff;
	font-size: 15px;              /* ⬅️ smaller text */
}

/* hover */
.nav-main a:not(.nav-cta):hover {
	color: rgba(255, 255, 255, 0.85);
}

/* CTA button */
.nav-cta {
	font-family: var(--font-body);
	font-size: 0.75rem;              /* ⬅️ smaller */
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.45rem 0.9rem;         /* ⬅️ reduced padding */
	color: #ffffff;
	border: 2px solid #ffffff;
	transition: all 0.3s ease;
}

/* CTA hover */
.nav-cta:hover {
	background-color: #ffffff;
	color: #A34318;
}

/* ========================================
   MOBILE MENU TOGGLE
   ======================================== */

.menu-toggle {
	display: none;
	flex-direction: column;
	gap: 4px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 6px;
}

.menu-toggle span {
	display: block;
	width: 20px;
	height: 3px;
	background-color: #ffffff;
	transition: all 0.3s ease;
}

/* REMOVE DOTS / BULLETS FROM NAV */
.nav-main,
.nav-main ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

/* If dots are added via ::before */
.nav-main li::before {
	content: none !important;
}



/* ========================================
   HERO SECTION (DECORATED & ENHANCED)
   ======================================== */
.hero {
    min-height: 600px;
    max-height: 820px;
    height: 100vh;
    display: grid;
    grid-template-columns: 1.67fr 1.7fr;
    background: linear-gradient(135deg, var(--color-cream) 0%, #f5f0e8 50%, #ede8dd 100%);
    overflow: hidden;
    padding-top: 9px;
    position: relative;
    box-shadow: inset 0 0 100px rgba(0,0,0,0.03);
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 40%;
    height: 40%;
    background: radial-gradient(circle, rgba(var(--color-gold-rgb), 0.12) 0%, transparent 70%);
    pointer-events: none;
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -5%;
    right: -15%;
    width: 35%;
    height: 35%;
    background: radial-gradient(circle, rgba(163, 67, 24, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: float 10s ease-in-out infinite reverse;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-self: end;
    width: 90%;
    padding: var(--space-md) var(--space-lg);
    padding-left: max(var(--space-md), calc((100vw - 1400px) / 2 + var(--space-md)));
    transform: translate(30px, 20px);
    z-index: 2;
}

.hero-tagline {
    margin-bottom: var(--space-sm);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.3s;
    letter-spacing: 0.2em;
    position: relative;
    display: inline-block;
}

.hero-title {
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    margin-bottom: var(--space-sm);
    line-height: 1.1;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.5s;
}

.hero-title em {
    font-style: italic;
    color: var(--color-gold);
    position: relative;
    white-space: nowrap;
}

.hero-description {
    max-width: 380px;
    margin-bottom: var(--space-md);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.7s;
    border-left: 2px solid var(--color-gold);
    padding-left: 20px;
}

.btn-primary {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1.1rem 2.25rem;
    background-color: var(--charcoal, #222);
    color: var(--color-cream);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(30deg);
    transition: all 0.6s ease;
}

.btn-primary:hover::after {
    left: 120%;
}

.btn-primary:hover {
    background-color: var(--color-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.hero-image {
    position: relative;
    overflow: hidden;
    clip-path: polygon(7% 0%, 100% 0%, 100% 100%, 0% 100%);
    margin-left: -4%; /* pulls it left so no gap appears */
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.2));
    pointer-events: none;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 6s ease-out;
}

.hero-slide.active img {
    transform: scale(1);
}

.hero-image-overlay {
    position: absolute;
    bottom: var(--space-lg);
    left: calc(var(--space-lg) + 20px);
    background-color: white;
    padding: 18px var(--space-md);
    max-width: 280px;
    z-index: 10;
    opacity: 0;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.05);
    border-left: 4px solid var(--color-gold);
    animation: slideInRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1.1s;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ========================================
   STORY SECTION - FULL UPDATED VERSION
   ======================================== */

.story {
    margin: 0;
    overflow: hidden;
}

.story .container {
    max-width: 100% !important;
    width: 100%;
    padding: 0;
}

.story-grid {
    display: flex;
    align-items: stretch;
}

/* LEFT SIDE */
.story-image {
    flex: 0 0 48%;
    background-image: url('images/stucco-stained-surface_1194-7708.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(2, auto);

    align-content: center;
    justify-content: center;

    gap: 10px;
    padding: 32px 60px 32px 28px;
    box-sizing: border-box;

    clip-path: polygon(0% 0%, 100% 0%, 88% 100%, 0% 100%);
    margin-right: -6%;
    position: relative;
    z-index: 2;
}

/* THE BROWN FRAME CONTAINER */
.story-image .img-box {
    display: block;
    width: fit-content;
    height: fit-content;
    overflow: hidden;
    border-radius: 2px;

    border: 6px solid #652608;
    background-color: #A34318;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);

    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

/* IMAGE */
.story-image .img-box img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

/* HOVER */
.story-image .img-box:hover {
    transform: scale(1.02);
}

.story-image .img-box:hover img {
    transform: scale(1.05);
}

/* RIGHT SIDE — CONTENT */
.story-content {
    flex: 1;
    background-color: #ebe4e4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 48px 50px 120px;  /* ← increased left padding */
    box-sizing: border-box;
    z-index: 1;

    border-left: 1px solid rgba(0,0,0,0.05);
}

/* TYPOGRAPHY */
.story-eyebrow {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #A34318;
    margin: 0 0 16px 0;
    font-weight: 600;
    opacity: 0.7;
}

.story-title {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.1;
    color: #2a1208;
    margin: 0 0 20px 0;
    letter-spacing: 0.3px;
}

.story-line {
    width: 40px;
    height: 3px;
    background-color: #A34318;
    margin: 0 0 20px 0;
    border-radius: 2px;
}

.story-text {
    font-size: 15px;
    line-height: 1.7;
    color: #6b4a3a;
    margin: 0 0 16px 0;
    text-align: justify;
}

/* BUTTON */
.story-btn {
    display: inline-block;
    align-self: flex-start;
    padding: 12px 30px;
    background-color: transparent;
    color: #A34318;
    border: 2px solid #A34318;
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 16px;
    transition: background-color 0.2s, color 0.2s;
    border-radius: 0;
}

.story-btn:hover {
    background-color: #A34318;
    color: #ebe4e4;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .story-grid {
        flex-direction: column;
    }
    .story-image {
        flex: none;
        clip-path: none;
        margin-right: 0;
        padding: 30px;
        min-height: 400px;
    }
    .story-content {
        padding: 40px 24px;
        border-left: none;
    }
}
/* ========================================
            COLLECTIONS SECTION
   ======================================== */
.collections {
    background: transparent; 
    padding: 30px 0; 
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 🔒 BACKGROUND IMAGE (20% Opacity) */
.collections::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('images/collection.webp'); 
    background-size: cover;
    background-position: center;
    opacity: 0.2; 
    z-index: -1;
}

/* --- CENTERED 5-CONTAINER ROW --- */
.collections-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 15px; 
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.collection-item {
    flex: 0 1 calc(20% - 15px); 
    position: relative;
    background-color: #ffffff;
    border: 2px solid #823513;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.collection-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- CENTERED HEADER --- */
.section-header {
    text-align: center;
    margin-bottom: 25px;
}

.section-title {
    margin: 0 auto 10px auto; 
    font-size: clamp(1.4rem, 2vw, 1.8rem); 
    font-weight: 800;
    color: #ffffff;
    background-color: #A34318; 
    display: table !important;
    padding: 8px 25px; 
    clip-path: polygon(4% 0%, 100% 0%, 96% 100%, 0% 100%);
}

/* --- VIEW MORE BUTTON (With Border) --- */
.view-more-container {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.view-more-btn {
    padding: 12px 35px;
    font-size: 14px;
    font-weight: 800;
    color: #A34318;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    background: transparent;
    border: 2px solid #A34318;
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    background-color: #A34318;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(163, 67, 24, 0.3);
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .collections-grid { flex-wrap: wrap; }
    .collection-item { flex: 0 1 calc(33.33% - 15px); }
}

@media (max-width: 600px) {
    .collection-item { flex: 0 1 calc(50% - 15px); }
}



/* ========================================
            CRAFTSMANSHIP SECTION
   ======================================== */
.craftsmanship {
    /* 🔒 Keep the base color as a fallback */
    background-color: #c5b097; 
    padding: 60px 0 25px 0; 
    position: relative;
    color: #2d160a;
    overflow: hidden; /* Keeps the background image contained */
}

/* 🔒 THE BACKGROUND IMAGE LAYER */
.craftsmanship::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* Replace 'your-workshop-image.jpg' with your actual image path */
    background-image: url('images/artist\ info.webp'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    /* 🔒 20% OPACITY */
    opacity: 0.2; 
    z-index: 0;
}

/* Ensure all content stays ABOVE the background image */
.craftsmanship .container {
    position: relative;
    z-index: 1;
}

.craft-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* --- TITLES --- */
.text-label {
    grid-column: 1 / -1; 
    text-align: center;
    width: 100%;
    color: #3d1a0b; /* Darkened for better contrast on image */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 8px; 
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.craft-title {
    grid-column: 1 / -1; 
    display: table !important; 
    width: fit-content !important; 
    margin: 0 auto 40px auto !important; 
    background-color: #A34318;
    color: #ffffff !important;
    padding: 8px 15px; 
    transform: skewX(-15deg); 
    font-weight: 800;
    font-size: 1.8rem;
    white-space: nowrap;
}

.craft-title span {
    display: inline-block;
    transform: skewX(15deg);
    padding: 0 5px;
}

/* --- ARTIST SECTION --- */
.artist-name {
    font-size: 3rem;
    color: #1a0d06; /* Sharper black-brown for readability */
    font-weight: 800;
    margin-bottom: 35px;
    text-align: left;
    line-height: 1.1;
}

.craft-text {
    line-height: 1.8;
    margin-bottom: 25px;
    color: #1a0d06;
    font-weight: 500; /* Made slightly thicker to read against the image */
}

/* --- IMAGE CONTROL --- */
.craft-image-wrapper {
    display: flex;
    justify-content: center;
}

.craft-image {
    width: 100%;
    max-width: 400px;
    border: 2px solid #823513; 
    overflow: hidden;
    box-shadow: 0 12px 25px rgba(0,0,0,0.3); /* Stronger shadow */
    background: #fff; /* Prevents background image bleed-through */
}

.craft-image img {
    width: 100%;
    display: block;
}

/* --- LIST --- */
.craft-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.craft-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-weight: 600;
}

.craft-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 10px;
    height: 2px;
    background-color: #A34318;
}

/* --- BUTTON --- */
.btn-primary {
    display: inline-block;
    padding: 14px 35px;
    background-color: #A34318; 
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s ease;
}

@media (max-width: 992px) {
    .craft-grid { grid-template-columns: 1fr; }
    .artist-name { font-size: 2.2rem; }
}



/* ========================================
            TESTIMONIALS SECTION
   ======================================== */
.testimonials {
    /* Base color is white so the 20% image looks clean */
    background-color: #ffffff; 
    padding: 30px 0 60px 0; 
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 🔒 BACKGROUND IMAGE LAYER (20% Opacity) */
.testimonials::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background-image: url('images/testimonials.webp'); 
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* moves with content */

    opacity: 0.5; 
    z-index: 1;
}

/* --- HEADER ALIGNMENT --- */
.testimonials-header {
    text-align: center;
    margin-bottom: 0; 
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Keeps content on top of the background image */
    position: relative;
    z-index: 2; 
}

.testimonials-subtitle {
    color: #A34318;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    padding-top: 15px;
    margin-bottom: 18px; 
    display: block;
}

.testimonials-title {
    margin: 0 auto;
    font-size: clamp(1.5rem, 2.5vw, 2.0rem); 
    font-weight: 800;
    color: #ffffff;
    background-color: #A34318; 
    display: table !important;
    padding: 12px 45px; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    
    /* Signature Slant matching your site style */
    clip-path: polygon(4% 0%, 100% 0%, 96% 100%, 0% 100%);
    
    /* 🔒 ZERO GAP: Heading touches the cards */
    margin-bottom: 0; 
}

/* --- THE ROW GRID --- */
.testimonials-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    
    /* Keeps cards on top of image and seamless with title */
    position: relative;
    z-index: 2;
    top: -2px; 
}

.testimonial-card {
    flex: 1;
    background-color: #ffffff; /* Solid cards to pop against the 20% BG image */
    padding: 35px 25px;
    border: 2px solid #823513; 
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(130, 53, 19, 0.15);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 5px;
    right: 20px;
    font-size: 4rem;
    color: #A34318;
    opacity: 0.1;
}

.testimonial-text {
    font-size: 15px; 
    line-height: 1.6;
    color: #333;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid rgba(163, 67, 24, 0.1);
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #823513;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    font-size: 14px;
    font-weight: 800;
    color: #000;
    margin: 0;
}

.testimonial-detail {
    font-size: 12px;
    color: #A34318;
    font-weight: 600;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .testimonials-grid { 
        flex-wrap: wrap; 
        top: 0; 
    }
    .testimonial-card { flex: 0 1 calc(50% - 20px); }
}

@media (max-width: 600px) {
    .testimonial-card { flex: 0 1 100%; }
}



/* ========================================
            CONTACT / VISIT SECTION
   ======================================== */
.contact {
    /* 🔒 REDUCED TOP GAP: Changed from var(--space-2xl) to 40px */
    padding: 40px 0 80px 0; 
    background-color: #ffffff; /* Matching your white-to-brown theme transition */
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-content {
    padding-right: 20px;
}

.contact-title {
    /* 🔒 TIGHT TOP: Minimal margin to keep it close to the previous section */
    margin-top: 0;
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #000;
    margin-bottom: 20px;
}

.contact-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item-label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #A34318; /* Signature Brown */
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-item-value {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: #000;
}

.contact-item-value a:hover {
    color: #A34318;
}

/* --- THE FORM WRAPPER --- */
.contact-form-wrapper {
    background-color: #fcfcfc;
    padding: 40px;
    /* 🔒 DESIGN MATCH: Signature brown border like your collection cards */
    border: 2px solid #823513; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: #000;
}

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

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(163, 67, 24, 0.3);
    background-color: #fff;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #A34318;
    box-shadow: 0 0 0 3px rgba(163, 67, 24, 0.1);
}

.form-submit {
    width: 100%;
    padding: 15px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    /* 🔒 MATCHING BUTTON: Signature Brown */
    background-color: #A34318; 
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.form-submit:hover {
    background-color: #823513;
}

/* --- RESPONSIVE --- */
@media (max-width: 850px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-content {
        padding-right: 0;
        text-align: center;
    }
}


/* ========================================
            FOOTER - Full Updated
   ======================================== */
.site-footer {
    /* Create gap above footer */
    margin-top: 0px; 
    
    /* 1. BACKGROUND IMAGE SETUP */
    /* Adjust the 0.8 opacity below to make the background lighter/darker */
    background: linear-gradient(rgba(255, 255, 245, 0.479), rgba(255, 255, 245, 0.425)), 
                url('images/stucco-stained-surface_1194-7708.webp'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    /* 2. BASE TEXT COLOR (Dark Brown) */
    color: #3D2B1F; 
    padding:40px;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: var(--space-lg);
    margin-bottom: 20px;
    padding-bottom: 20px;
    /* Updated border color to match dark brown theme */
    border-bottom: 1px solid rgba(61, 43, 31, 0.15);
}

/* Column 1: Brand */
.footer-brand {
    padding-right: var(--space-md);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.03em;
    margin-bottom: var(--space-sm);
    color: #3D2B1F; /* Dark Brown */
}

.footer-logo span {
    color: #5C4033; /* Slightly lighter brown for the accent */
}

/* Container to align Logo and Text side-by-side */
.footer-logo-container {
    display: flex;
    align-items: center;    /* Vertically centers logo with text */
    gap: 15px;              /* Space between the image and the text */
    margin-bottom: 1.5rem;  /* Space before the tagline starts */
}

.footer-logo-img {
    height: 60px;           /* Reduced from 100px to better fit next to text */
    width: auto;
    display: block;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;      /* Slightly adjusted for side-by-side balance */
    margin-bottom: 0;       /* Removed bottom margin since container handles it */
    line-height: 1;
    color: #3D2B1F;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-tagline {
    font-size: 1rem;
    color: #5C4033;
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.footer-contact-info p {
    font-size: 0.95rem;
    color: #5C4033;
    margin-bottom: var(--space-xs);
}

.footer-contact-info a {
    color: #3D2B1F;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-info a:hover {
    color: #8B4513; /* Saddle Brown hover */
}

/* Column Headers */
.footer-column-title {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600; /* Increased weight for visibility */
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #3D2B1F; 
    margin-bottom: var(--space-md);
}

/* Column Links */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-size: 1rem;
    color: #5C4033;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-links a:hover {
    color: #3D2B1F;
    font-weight: 500;
}

/* Column 4: About Website */
.footer-about p {
    font-size: 0.95rem;
    color: #5C4033;
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.footer-about a {
    color: #3D2B1F;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-about a:hover {
    color: #8B4513;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 0.85rem;
    color: #5C4033;
}

.footer-copyright a {
    color: #3D2B1F;
    transition: color 0.3s ease;
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.footer-social a {
    font-size: 0.9rem;
    color: #3D2B1F;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
    color: #8B4513;
    transform: translateY(-2px);
}

/* ========================================
            RESPONSIVE STYLES
   ======================================== */
@media (max-width: 1200px) {
    .hero { grid-template-columns: 1fr 1fr; }
    .hero-content {
        padding: var(--space-md) var(--space-md);
        padding-left: var(--space-lg);
    }
    .collections-grid { grid-template-columns: repeat(6, 1fr); }
    .collection-item:nth-child(1) { grid-column: 1 / 4; grid-row: 1 / 2; }
    .collection-item:nth-child(2) { grid-column: 4 / 7; grid-row: 1 / 2; }
    .collection-item:nth-child(3) { grid-column: 1 / 3; grid-row: 2 / 3; }
    .collection-item:nth-child(4) { grid-column: 3 / 5; grid-row: 2 / 3; }
    .collection-item:nth-child(5) { grid-column: 5 / 7; grid-row: 2 / 3; }
    .collection-item:nth-child(1) .collection-image { min-height: 350px; }
}

@media (max-width: 1100px) {
    .logo { font-size: 1.5rem; }
    .nav-main { gap: var(--space-md); }
    .nav-main a:not(.nav-cta) { font-size: 0.85rem; }
    .nav-cta { font-size: 0.75rem; padding: 0.7rem 1rem; }
    .craft-stats {
        gap: var(--space-md);
        padding: var(--space-sm) var(--space-md);
        left: var(--space-md);
        right: var(--space-md);
    }
}

@media (max-width: 860px) {
    .nav-main { display: none; }
    .menu-toggle { display: flex; }
    .hero { grid-template-columns: 1fr; height: auto; max-height: none; }
    .hero-content { padding: calc(var(--space-lg) + 60px) var(--space-md) var(--space-lg); order: 2; }
    .hero-image { order: 1; height: 400px; clip-path: none; }
    .hero-image-overlay { display: none; }
    .featured-grid, .story-grid, .craft-grid, .contact-grid { grid-template-columns: 1fr; }
    .featured-content { padding-right: 0; order: 2; }
    .featured-image-wrapper { order: 1; }
    .story-content { padding-right: 0; }
    .craft-content { order: 2; }
    .craft-image-wrapper { order: 1; }
    .craft-stats { position: static; margin-top: var(--space-md); justify-content: center; }
    .testimonials-grid { grid-template-columns: 1fr; gap: var(--space-md); }
    .contact-content { padding-right: 0; }
    
    .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
    .footer-brand { grid-column: 1 / -1; padding-right: 0; }
    .footer-bottom { flex-direction: column; gap: var(--space-md); text-align: center; }
}

@media (max-width: 768px) {
    .collections-grid { grid-template-columns: 1fr 1fr; }
    .collection-item:nth-child(1) { grid-column: 1 / -1; grid-row: auto; }
    .collection-item:nth-child(2), .collection-item:nth-child(3), 
    .collection-item:nth-child(4), .collection-item:nth-child(5) { grid-column: auto; grid-row: auto; }
    .collection-item:nth-child(1) .collection-image { min-height: 300px; }
    .collection-overlay { opacity: 1; }
    .story-images { grid-template-columns: 1fr; gap: var(--space-sm); }
    .story-image:first-child { margin-top: 0; }
    .section-header { flex-direction: column; align-items: flex-start; gap: var(--space-md); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonial-card:nth-child(3) { grid-column: 1 / -1; }
}

@media (max-width: 576px) {
    :root {
        --space-lg: 3rem;
        --space-xl: 4rem;
        --space-2xl: 6rem;
    }
    .site-footer { margin-top: var(--space-xl); }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .collections-grid { grid-template-columns: 1fr; }
    .collection-item:nth-child(n) { grid-column: 1; }
    .craft-stats { flex-direction: column; gap: var(--space-md); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonial-card:nth-child(3) { grid-column: auto; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    height: 100dvh;
    background-color: var(--color-warm-white);
    z-index: 2000;
    padding: var(--space-xl) var(--space-md);
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.mobile-nav.active { right: 0; }
.mobile-nav-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-charcoal);
}

.mobile-nav-links { list-style: none; margin-top: var(--space-xl); }
.mobile-nav-links li { margin-bottom: var(--space-md); }
.mobile-nav-links a {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-charcoal);
    transition: color 0.3s ease;
}

.mobile-nav-links a:hover { color: var(--color-gold); }
.mobile-nav-cta { margin-top: var(--space-xl); padding-bottom: var(--space-md); }

.mobile-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-overlay.active { opacity: 1; visibility: visible; }

/* ========================================
   GLOBAL FIXES (VERY IMPORTANT)
   ======================================== */

html {
    font-size: clamp(14px, 1vw, 18px);
}

body {
    overflow-x: hidden;
}

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

/* ========================================
   HEADER FIX
   ======================================== */

@media (max-width: 768px) {

    .site-header {
        padding: 6px 0;
    }

    .logo img {
        height: 40px;
    }

    .logo-text {
        font-size: 16px;
    }

    .logo-text span {
        font-size: 11px;
    }

    .nav-main {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }
}

/* ========================================
   HERO SECTION (MAIN FIX 🔥)
   ======================================== */

.hero {
    width: 100%;
    overflow: hidden;
}

/* MOBILE FIX (REMOVES GAP COMPLETELY) */
@media (max-width: 768px) {

    .hero {
        display: flex;
        flex-direction: column;
        height: auto;
        min-height: auto;
        max-height: none;
    }

    .hero-image {
        width: 100%;
        height: auto;
        clip-path: none;
    }

    .hero-slide img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .hero-content {
        padding: 25px 20px 35px;
        transform: none;
        text-align: center;
        align-items: center;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-tagline {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }

    .hero-description {
        border-left: none;
        padding-left: 0;
        max-width: 100%;
    }

    .btn-primary {
        padding: 12px 18px;
        font-size: 0.75rem;
    }

    .hero-image-overlay {
        display: none;
    }
}

/* TABLET FIX */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        height: auto;
    }

    .hero-content {
        transform: none;
        padding: 50px 20px;
        text-align: center;
    }
}

/* ========================================
   STORY SECTION FIX
   ======================================== */

@media (max-width: 1024px) {

    .story-grid {
        flex-direction: column;
    }

    .story-image {
        padding-top: 0;
    }

    .story-content {
        padding: 40px 25px;
        text-align: center;
    }

    .story-content::before {
        display: none;
    }

    .story-title {
        font-size: 28px;
    }
}

/* ========================================
   COLLECTIONS FIX
   ======================================== */

.collections-grid {
    flex-wrap: wrap;
}

@media (max-width: 1200px) {
    .collection-item {
        flex: 0 1 calc(33.33% - 15px);
    }
}

@media (max-width: 768px) {
    .collection-item {
        flex: 0 1 calc(50% - 15px);
    }
}

@media (max-width: 480px) {
    .collection-item {
        flex: 0 1 100%;
    }
}

/* ========================================
   CRAFT SECTION FIX
   ======================================== */

@media (max-width: 992px) {

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

    .artist-name {
        text-align: center;
        font-size: 2rem;
    }
}

/* ========================================
   TESTIMONIALS FIX
   ======================================== */

@media (max-width: 992px) {

    .testimonials-grid {
        flex-wrap: wrap;
    }

    .testimonial-card {
        flex: 0 1 calc(50% - 20px);
    }
}

@media (max-width: 600px) {

    .testimonial-card {
        flex: 0 1 100%;
    }
}

/* ========================================
   CONTACT FIX
   ======================================== */

@media (max-width: 992px) {

    .contact-grid {
        grid-template-columns: 1fr;
    }

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

/* ========================================
   FOOTER FIX
   ======================================== */

@media (max-width: 768px) {

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

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
}

/* ========================================
   EXTRA SMALL DEVICES
   ======================================== */

@media (max-width: 400px) {

    .hero-title {
        font-size: 1.6rem;
    }

    .nav-cta {
        font-size: 0.6rem;
        padding: 6px 10px;
    }

    .story-title {
        font-size: 24px;
    }
}