/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Unique Color Palette - Modern Heritage Theme */
    --primary-warm: #A67C52;
    --primary-deep: #6B4F3A;
    --accent-burgundy: #8B3A3A;
    --accent-gold: #B8915A;
    --bg-light-cream: #F9F5F0;
    --bg-soft-white: #FFFCF9;
    --bg-charcoal: #2C2A27;
    --text-rich: #2E241F;
    --text-muted: #6F655C;
    --border-warm: #DCD3C9;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-elegant: 0 20px 40px rgba(107, 79, 58, 0.08);
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-rich);
    background: var(--bg-soft-white);
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

.section {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }
}

/* ========== LOADER ========== */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-soft-white);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    width: 300px;
}

.loader-logo {
    font-size: 2.2rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    color: transparent;
    background: linear-gradient(135deg, var(--primary-warm), var(--accent-gold));
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: 30px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.loader-highlight {
    color: var(--primary-warm);
    font-style: italic;
}

.loader-progress {
    width: 100%;
    height: 2px;
    background: var(--border-warm);
    position: relative;
    overflow: hidden;
}

.loader-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--primary-warm);
    animation: progress 2s ease-in-out forwards;
}

@keyframes progress {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

/* ========== COOKIE POPUP ========== */
.cookie-popup {
    position: fixed;
    bottom: 30px;
    left: 30px;
    max-width: 380px;
    background: var(--bg-soft-white);
    padding: 25px;
    border-radius: 16px;
    box-shadow: var(--shadow-elegant);
    z-index: 1000;
    display: none;
    border: 1px solid var(--border-warm);
}

.cookie-popup.show {
    display: block;
    animation: slideInLeft 0.5s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.cookie-content i {
    font-size: 2rem;
    color: var(--primary-warm);
    margin-bottom: 15px;
}

.cookie-content p {
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.9rem;
    flex: 1;
}

.cookie-accept {
    background: var(--primary-warm);
    color: white;
}

.cookie-accept:hover {
    background: var(--primary-deep);
}

.cookie-reject {
    background: var(--border-warm);
    color: var(--text-rich);
}

.cookie-reject:hover {
    background: #c9bfb3;
}

/* ========== AD BAR ========== */
.ad-bar {
    background: var(--primary-deep);
    color: rgba(255, 255, 255, 0.9);
    padding: 6px 0;
    font-size: 0.75rem;
    text-align: center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1002;
    transition: transform 0.3s ease;
}

.ad-bar.hidden {
    transform: translateY(-100%);
}

.ad-bar i {
    margin-right: 5px;
    opacity: 0.8;
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 30px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: var(--transition-smooth);
    padding: 20px 0;
}

.header.scrolled {
    background: rgba(255, 252, 249, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-rich);
    transition: var(--transition-smooth);
}

@media (max-width: 992px) {
    .menu-toggle {
        display: flex;
    }
}

.logo {
    font-size: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    color: transparent;
    background: linear-gradient(135deg, var(--primary-warm), var(--accent-gold));
    -webkit-background-clip: text;
    background-clip: text;
    text-decoration: none;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* Desktop Navigation */
.nav-desktop {
    display: block;
}

@media (max-width: 992px) {
    .nav-desktop {
        display: none;
    }
}

.nav-list {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text-rich);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
    transition: var(--transition-smooth);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-warm);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-warm);
}

.nav-link:hover::after {
    width: 100%;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: var(--bg-soft-white);
    z-index: 2000;
    padding: 40px 30px;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.mobile-logo {
    font-size: 1.6rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    color: transparent;
    background: linear-gradient(135deg, var(--primary-warm), var(--accent-gold));
    -webkit-background-clip: text;
    background-clip: text;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.mobile-close {
    background: none;
    border: none;
    font-size: 2.5rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.mobile-close:hover {
    transform: rotate(90deg);
    color: var(--primary-warm);
}

.nav-mobile ul {
    list-style: none;
}

.nav-mobile li {
    margin-bottom: 25px;
    opacity: 0;
    transform: translateX(30px);
    animation: slideIn 0.5s forwards;
}

.nav-mobile li:nth-child(1) {
    animation-delay: 0.1s;
}

.nav-mobile li:nth-child(2) {
    animation-delay: 0.2s;
}

.nav-mobile li:nth-child(3) {
    animation-delay: 0.3s;
}

.nav-mobile li:nth-child(4) {
    animation-delay: 0.4s;
}

.nav-mobile li:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-link {
    text-decoration: none;
    color: var(--text-rich);
    font-size: 1.3rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.mobile-link:hover {
    color: var(--primary-warm);
    padding-left: 10px;
}

.mobile-cta {
    margin-top: 50px;
    opacity: 0;
    animation: fadeIn 0.5s 0.6s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 0;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--primary-warm);
    color: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-deep);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(166, 124, 82, 0.2);
}

.btn-outline-light {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1547949003-9792a18a2601?q=80&w=2070');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(43, 37, 34, 0.9) 0%, rgba(107, 79, 58, 0.7) 100%);
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 700px;
}

.hero-subtitle {
    display: inline-block;
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    opacity: 0.8;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 10px;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

.text-accent {
    color: var(--accent-gold);
    font-style: italic;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    z-index: 2;
}

.hero-scroll span {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    opacity: 0.7;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

/* ========== SECTION HEADER ========== */
.section-eyebrow {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-warm);
    margin-bottom: 10px;
}

.section-title {
    font-size: 3rem;
    color: var(--text-rich);
    margin-bottom: 20px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ========== FEATURED SECTION ========== */
.featured {
    background: var(--bg-light-cream);
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.featured-image-wrapper {
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-burgundy);
    color: white;
    padding: 8px 20px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    z-index: 2;
}

.featured-image {
    width: 100%;
    height: auto;
    box-shadow: var(--shadow-elegant);
    transition: var(--transition-smooth);
}

.featured-image:hover {
    transform: scale(1.02);
}

.image-caption {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

.detail-block {
    margin-bottom: 40px;
    padding-left: 30px;
    border-left: 2px solid var(--border-warm);
}

.detail-block h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-rich);
}

.detail-block p {
    color: var(--text-muted);
    line-height: 1.8;
}

.featured-attributes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid var(--border-warm);
    border-bottom: 1px solid var(--border-warm);
}

.attribute {
    text-align: center;
}

.attribute-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.attribute-value {
    font-weight: 600;
    color: var(--text-rich);
}

/* ========== CRAFTSMANSHIP SECTION ========== */
.craftsmanship {
    background: var(--bg-soft-white);
}

.craftsmanship-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .craftsmanship-grid {
        grid-template-columns: 1fr;
    }
}

.craft-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.craft-stat {
    text-align: center;
}

.craft-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-warm);
    line-height: 1;
    margin-bottom: 5px;
}

.craft-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.craftsmanship-visual {
    position: relative;
    height: 500px;
}

.visual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    height: 100%;
}

.visual-item {
    background: var(--primary-warm);
    opacity: 0.1;
    transition: var(--transition-smooth);
}

.visual-item-1 {
    background: url('https://images.unsplash.com/photo-1607344645866-009c320b63e0?q=80&w=1974') center/cover;
    opacity: 1;
}

.visual-item-2 {
    background: url('https://images.unsplash.com/photo-1553063822-db5cb7831acb?q=80&w=1974') center/cover;
    opacity: 1;
    transform: translateY(20px);
}

.visual-item-3 {
    background: url('https://images.unsplash.com/photo-1607344645866-009c320b63e0?q=80&w=1974') center/cover;
    opacity: 1;
    transform: translateY(40px);
}

/* ========== HERITAGE SECTION ========== */
.heritage {
    background: var(--bg-charcoal);
    color: white;
}

.heritage-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 992px) {
    .heritage-wrapper {
        grid-template-columns: 1fr;
    }
}

.heritage-quote {
    position: relative;
    padding: 40px;
}

.heritage-quote i {
    font-size: 3rem;
    color: var(--primary-warm);
    opacity: 0.3;
    position: absolute;
    top: 0;
    left: 0;
}

.heritage-quote blockquote {
    font-size: 1.8rem;
    line-height: 1.4;
    margin-bottom: 20px;
    font-family: 'Cormorant Garamond', serif;
}

.heritage-quote cite {
    font-style: normal;
    color: var(--accent-gold);
    font-size: 1rem;
    letter-spacing: 1px;
}

.heritage-timeline {
    position: relative;
    padding-left: 30px;
}

.heritage-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 30px;
}

.timeline-dot {
    position: absolute;
    left: -34px;
    top: 5px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-warm);
}

.timeline-content h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--accent-gold);
}

.timeline-content p {
    color: rgba(255, 255, 255, 0.7);
}

/* ========== VALUES SECTION ========== */
.values {
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.value-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-light-cream);
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-elegant);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--primary-warm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    transition: var(--transition-smooth);
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-card h3 {
    margin-bottom: 10px;
    color: var(--text-rich);
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    background: var(--bg-light-cream);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.testimonial-rating {
    color: #FFB800;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-quote {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-rich);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-initials {
    width: 50px;
    height: 50px;
    background: var(--primary-warm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.author-info h4 {
    margin-bottom: 5px;
    color: var(--text-rich);
}

.author-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.testimonial-prev,
.testimonial-next {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-warm);
    background: transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--primary-warm);
    color: white;
    border-color: var(--primary-warm);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-warm);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background: var(--primary-warm);
    transform: scale(1.3);
}

/* ========== FAQ ========== */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.faq-item {
    border: 1px solid var(--border-warm);
    padding: 25px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--primary-warm);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--text-rich);
}

.faq-question i {
    color: var(--primary-warm);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--text-muted);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 20px;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--text-rich);
    color: white;
    padding: 60px 0 20px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .footer-main {
        grid-template-columns: 1fr;
    }
}

.footer-logo {
    font-size: 1.6rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    display: block;
    margin-bottom: 15px;
    color: transparent;
    background: linear-gradient(135deg, var(--accent-gold), var(--primary-warm));
    -webkit-background-clip: text;
    background-clip: text;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer-contact-info {
    margin-top: 15px;
}

.footer-contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 0.85rem;
    opacity: 0.8;
}

.footer-contact-info i {
    width: 16px;
    color: var(--primary-warm);
    flex-shrink: 0;
}

.footer-contact-info a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-contact-info a:hover {
    color: var(--primary-warm);
}

.footer p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--accent-gold);
}

.footer ul {
    list-style: none;
}

.footer li {
    margin-bottom: 10px;
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 0.9rem;
}

.footer a:hover {
    color: var(--primary-warm);
    padding-left: 5px;
}

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.6;
}

.footer-disclaimer i {
    margin-right: 5px;
}

.footer-bottom {
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.5;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========== MODALS ========== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 3000;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: var(--bg-soft-white);
    padding: 40px;
    border-radius: 0;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.modal-close:hover {
    transform: rotate(90deg);
    color: var(--primary-warm);
}

.modal-content h2 {
    margin-bottom: 20px;
    color: var(--text-rich);
}

.modal-content p {
    margin-bottom: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary-warm);
    color: white;
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 900;
    font-size: 1rem;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-deep);
    transform: translateY(-5px);
}

/* ========== RESPONSIVE FIXES ========== */
@media (max-width: 992px) {
    .visual-grid {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .header-right .btn {
        display: none;
    }

    .featured-attributes {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .craft-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .featured-details {
        padding: 20px;
    }
}