/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Color Palette */
    --color-primary: #123B2A;          /* Dark Green */
    --color-primary-light: #1e523c;
    --color-primary-dark: #0a2419;
    --color-bg: #F7F0E6;               /* Cream / Warm White */
    --color-bg-light: #FAF6F0;
    --color-accent: #7B2D2D;           /* Dark Red Detail */
    --color-accent-hover: #943737;
    --color-gold: #C3A35B;             /* Gold / Bronze Detail */
    --color-gold-hover: #d2b36e;
    --color-text: #1C1C1C;             /* Charcoal Text */
    --color-text-muted: #555555;
    --color-white: #FFFFFF;
    
    /* Layout & Borders */
    --border-color: rgba(195, 163, 91, 0.25);
    --border-color-strong: rgba(195, 163, 91, 0.5);
    --border-radius: 8px;
    --border-radius-lg: 16px;
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Effects & Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-sm: 0 4px 10px rgba(18, 59, 42, 0.05);
    --shadow-md: 0 10px 30px rgba(18, 59, 42, 0.08);
    --shadow-lg: 0 20px 40px rgba(18, 59, 42, 0.12);
    
    /* Layout Constants */
    --header-height: 80px;
    --header-height-mobile: 70px;
}

/* ==========================================================================
   RESET & BASICS
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: var(--header-height-mobile);
    }
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Add padding at the bottom on mobile to account for sticky bar */
@media (max-width: 768px) {
    body {
        padding-bottom: 70px;
    }
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    background: none;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
}

/* ==========================================================================
   UTILITY CLASSES & GRID
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 24px;
    padding-left: 24px;
}

.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

@media (max-width: 768px) {
    .section-padding {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

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

.section-header {
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 40px;
    }
}

.sub-heading {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.2;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
}

.section-description {
    max-width: 700px;
    margin: 20px auto 0;
    color: var(--color-text-muted);
    font-size: 1.05rem;
}

.decorative-divider {
    width: 80px;
    height: 3px;
    background-color: var(--color-gold);
    margin: 15px auto 0;
    position: relative;
}

.decorative-divider::after {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background-color: var(--color-gold);
    border: 2px solid var(--color-bg);
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -4px;
    margin-left: -4px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: var(--transition-normal);
    gap: 10px;
}

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

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(123, 45, 45, 0.2);
}

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

.btn-secondary:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(18, 59, 42, 0.2);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-gold);
}

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

.btn-block {
    display: flex;
    width: 100%;
}

.icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.site-header {
    background-color: rgba(247, 240, 230, 0.85); /* Semi-transparent cream */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: var(--transition-normal);
}

.site-header.scrolled {
    height: 70px;
    background-color: rgba(247, 240, 230, 0.95);
    box-shadow: var(--shadow-sm);
}

@media (max-width: 991px) {
    .site-header,
    .site-header.scrolled {
        height: var(--header-height-mobile);
    }
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.02em;
}

.logo-subtitle {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 0.3em;
    margin-top: 2px;
}

.nav-menu ul {
    display: flex;
    gap: 28px;
}

.mobile-menu-cta {
    display: none;
}

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
    position: relative;
    padding: 6px 0;
}

.nav-menu a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    position: absolute;
    bottom: 0;
    left: 0;
    transition: var(--transition-fast);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a.active {
    color: var(--color-primary);
    font-weight: 600;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.call-header-btn {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
}

.nav-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-normal);
}

/* Header Responsive (Mobile Burger Menu) */
@media (max-width: 991px) {
    .nav-toggle {
        display: flex;
    }
    
    .call-header-btn {
        display: none; /* Hide top button on tablets/mobile, use hamburger & sticky bottom */
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height-mobile);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height-mobile));
        background-color: var(--color-bg);
        border-top: 1px solid var(--border-color);
        padding: 40px 24px;
        transform: translateX(-100%);
        transition: var(--transition-normal);
        overflow-y: auto;
    }
    
    .nav-menu.open {
        transform: translateX(0);
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        font-family: var(--font-heading);
        font-weight: 600;
    }

    .mobile-menu-cta {
        display: block;
        width: min(100%, 260px);
        margin-top: 8px;
    }

    .nav-menu .mobile-menu-call-btn {
        width: 100%;
        padding: 12px 20px;
        font-family: var(--font-body);
        font-size: 0.95rem;
        color: var(--color-white);
    }

    .nav-menu .mobile-menu-call-btn::after {
        display: none;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 80px;
    background-color: var(--color-primary-dark);
    color: var(--color-bg);
    overflow: hidden;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .hero-section {
        padding-top: calc(var(--header-height-mobile) + 30px);
        padding-bottom: 60px;
    }
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(18, 59, 42, 0.4) 0%, rgba(10, 36, 25, 0.95) 80%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

@media (max-width: 991px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
}

.hero-content {
    max-width: 580px;
}

@media (max-width: 991px) {
    .hero-content {
        margin: 0 auto;
    }
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(195, 163, 91, 0.15);
    border: 1px solid rgba(195, 163, 91, 0.4);
    color: var(--color-gold);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.2rem;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-gold);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1.4rem;
    }
}

.hero-text {
    font-size: 1.1rem;
    color: rgba(247, 240, 230, 0.8);
    margin-bottom: 36px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width: 991px) {
    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons .btn {
        width: 100%;
    }
}

.hero-image-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-color-strong);
    aspect-ratio: 4/3;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

/* ==========================================================================
   HISTORY SECTION
   ========================================================================== */
.history-section {
    background-color: var(--color-bg);
}

.history-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: flex-start;
}

@media (max-width: 991px) {
    .history-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.history-content .lead-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    line-height: 1.4;
    color: var(--color-primary);
    margin-bottom: 24px;
    font-weight: 600;
}

.history-content .body-text {
    font-size: 1.05rem;
    color: var(--color-text-muted);
}

/* Timeline component */
.history-timeline {
    position: relative;
    padding-left: 32px;
}

.history-timeline::before {
    content: '';
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 11px;
    width: 2px;
    background-color: var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-badge {
    position: absolute;
    left: -32px;
    top: 4px;
    width: 24px;
    height: 24px;
    background-color: var(--color-bg);
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    transition: var(--transition-fast);
}

.timeline-item:hover .timeline-badge {
    background-color: var(--color-gold);
    box-shadow: 0 0 10px rgba(195, 163, 91, 0.4);
}

.timeline-panel {
    background-color: var(--color-bg-light);
    border: 1px solid var(--border-color);
    padding: 20px 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.timeline-item:hover .timeline-panel {
    transform: translateY(-2px);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-md);
}

.timeline-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.timeline-panel p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* Let's style the timeline badges when content specifies year/title text inside badge */
.timeline-badge {
    width: 70px;
    height: 32px;
    border-radius: 20px;
    left: -66px;
    top: 0;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-body);
}

.history-timeline {
    padding-left: 80px;
}

.history-timeline::before {
    left: 31px;
    top: 16px;
    bottom: 16px;
}

@media (max-width: 480px) {
    .history-timeline {
        padding-left: 0;
    }
    
    .history-timeline::before {
        display: none;
    }
    
    .timeline-badge {
        position: relative;
        left: 0;
        margin-bottom: 10px;
        display: inline-flex;
    }
}

/* ==========================================================================
   GENERATIONS SECTION
   ========================================================================== */
.founder-section {
    background-color: var(--color-bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.generations-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    align-items: stretch;
}

.generation-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-color: var(--color-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
}

.generation-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--border-color);
}

.generation-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.generation-content {
    flex: 1;
    padding: 32px;
}

.generation-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    line-height: 1.25;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 14px;
}

.generation-content p {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

@media (max-width: 991px) {
    .generations-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .generation-card {
        max-width: 720px;
        width: 100%;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .generation-content {
        padding: 26px 24px;
    }

    .generation-content h3 {
        font-size: 1.55rem;
    }
}

/* ==========================================================================
   SAUSAGES SPOTLIGHT
   ========================================================================== */
.sausages-section {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
}

.sausages-container {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 991px) {
    .sausages-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.sausages-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-color-strong);
    aspect-ratio: 1/1;
}

.sausage-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.sausages-image:hover .sausage-img {
    transform: scale(1.05);
}

.sausages-content {
    max-width: 560px;
}

.spotlight-tag {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}

.spotlight-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--color-white);
}

@media (max-width: 768px) {
    .spotlight-title {
        font-size: 2.1rem;
    }
}

.small-divider {
    width: 60px;
    height: 2px;
    background-color: var(--color-gold);
    margin-bottom: 24px;
}

.spotlight-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(247, 240, 230, 0.85);
    margin-bottom: 35px;
}

.sausage-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    width: 28px;
    height: 28px;
    color: var(--color-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 0.95rem;
    color: rgba(247, 240, 230, 0.7);
}

/* ==========================================================================
   PRODUCTS SECTION
   ========================================================================== */
.products-section {
    background-color: var(--color-bg);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 30px;
}

.product-card {
    grid-column: span 4;
    background-color: var(--color-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 35px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

@media (max-width: 991px) {
    .product-card {
        grid-column: span 6;
    }
}

@media (max-width: 768px) {
    .product-card {
        grid-column: span 12;
    }
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--color-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-normal);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-gold-hover);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: rgba(19, 59, 42, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--color-primary);
    transition: var(--transition-fast);
}

.product-card:hover .product-icon-wrapper {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.product-icon {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.product-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* Featured Card Style (House Sausages) */
.product-card.featured-product-card {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-md);
}

.product-card.featured-product-card .product-icon-wrapper {
    background-color: rgba(247, 240, 230, 0.1);
    color: var(--color-gold);
}

.product-card.featured-product-card .product-name {
    color: var(--color-white);
}

.product-card.featured-product-card .product-desc {
    color: rgba(247, 240, 230, 0.8);
}

.product-card.featured-product-card::before {
    background-color: var(--color-accent);
}

.product-card.featured-product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-gold-hover);
}

.product-card.featured-product-card:hover .product-icon-wrapper {
    background-color: var(--color-gold);
    color: var(--color-primary-dark);
}

/* ==========================================================================
   GALLERY SECTION
   ========================================================================== */
.gallery-section {
    background-color: var(--color-bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 36, 25, 0.9) 0%, rgba(10, 36, 25, 0.2) 60%, rgba(10, 36, 25, 0) 100%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition-normal);
}

.gallery-overlay span {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-white);
    transform: translateY(10px);
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.06);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* ==========================================================================
   GOOGLE REVIEWS SECTION
   ========================================================================== */
.reviews-section {
    background-color: var(--color-bg);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

@media (max-width: 991px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

.reviews-google-btn {
    margin-top: 14px;
}

.review-stars {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: rgba(195, 163, 91, 0.35);
    font-size: 1.1rem;
    line-height: 1;
}

.review-star.is-filled {
    color: var(--color-gold);
}

.review-card {
    background-color: var(--color-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 26px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.review-card:hover {
    transform: translateY(-3px);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-md);
}

.review-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.review-author {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

.review-card-stars {
    display: flex;
}

.review-card-text {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

.google-reviews-attribution {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-top: 4px;
}

.google-reviews-attribution .reviews-google-btn {
    margin-top: 0;
}

@media (max-width: 576px) {
    .review-card {
        padding: 24px 20px;
    }

    .review-card-header {
        flex-direction: column;
        gap: 10px;
    }
}

/* ==========================================================================
   CONTACT & LOCATION SECTION
   ========================================================================== */
.contact-section {
    background-color: var(--color-bg-light);
    border-top: 1px solid var(--border-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: stretch;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    display: flex;
    gap: 20px;
    background-color: var(--color-white);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.info-card:hover {
    border-color: var(--color-gold);
    box-shadow: var(--shadow-md);
}

.info-icon-wrapper {
    width: 50px;
    height: 50px;
    background-color: rgba(19, 59, 42, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
}

.info-card:hover .info-icon-wrapper {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.info-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.info-details h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 6px;
}

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

.info-details .tel-link {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-accent);
}

.info-details .tel-link:hover {
    color: var(--color-accent-hover);
    text-decoration: underline;
}

.helper-text {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    display: block;
    margin-top: 2px;
}

.schedule-hours {
    font-weight: 600;
    color: var(--color-text);
    margin-top: 4px;
}

.schedule-status-closed {
    margin-top: 6px;
    font-size: 0.9rem;
}

.closed-label {
    color: var(--color-accent);
    font-weight: 600;
}

.text-link {
    font-size: 0.85rem;
    color: var(--color-gold);
    font-weight: 600;
    margin-top: 8px;
    display: inline-block;
}

.text-link:hover {
    color: var(--color-gold-hover);
    text-decoration: underline;
}

.contact-actions-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 10px;
}

@media (max-width: 480px) {
    .contact-actions-buttons {
        grid-template-columns: 1fr;
    }
}

.contact-map-panel {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color-strong);
    min-height: 400px;
}

.map-wrapper {
    width: 100%;
    height: 100%;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    border-top: 2px solid var(--color-gold);
    padding-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(195, 163, 91, 0.15);
}

@media (max-width: 991px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

.footer-brand h2 {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 4px;
}

.footer-brand .owner-name {
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 16px;
}

.site-footer h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.site-footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background-color: var(--color-gold);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(247, 240, 230, 0.7);
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 4px;
}

.footer-contact p {
    font-size: 0.9rem;
    color: rgba(247, 240, 230, 0.7);
    margin-bottom: 12px;
}

.footer-contact a:hover {
    color: var(--color-gold);
}

.footer-hours {
    font-weight: 500;
    color: var(--color-gold) !important;
}

.footer-bottom {
    padding-top: 24px;
    padding-bottom: 24px;
    background-color: rgba(0, 0, 0, 0.2);
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(247, 240, 230, 0.5);
    flex-wrap: wrap;
    gap: 15px;
}

@media (max-width: 576px) {
    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================================================
   MOBILE STICKY ACTION BAR
   ========================================================================== */
.mobile-sticky-actions {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background-color: var(--color-primary-dark);
    border-top: 2px solid var(--color-gold);
    z-index: 999;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
}

.sticky-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-weight: 600;
    font-size: 0.9rem;
    gap: 8px;
    transition: var(--transition-fast);
}

.sticky-action-btn:first-child {
    border-right: 1px solid rgba(195, 163, 91, 0.2);
}

.sticky-action-btn:hover {
    background-color: var(--color-primary-light);
}

.action-call {
    color: var(--color-white);
}

.action-call:hover {
    color: var(--color-gold);
}

.action-map {
    color: var(--color-white);
}

.action-map:hover {
    color: var(--color-gold);
}

@media (max-width: 768px) {
    .mobile-sticky-actions {
        display: flex;
    }
}

/* ==========================================================================
   SCROLL & FADE-IN MICRO-ANIMATIONS
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
