/* ============================================
   AMANA FARMS LIVE POULTRY
   Classic & Elegant — Teal + Slate Grey
   ============================================ */

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

:root {
    --teal-50: #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-200: #99f6e4;
    --teal-300: #5eead4;
    --teal-400: #2dd4bf;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    --teal-800: #115e59;
    --teal-900: #134e4a;
    --teal-950: #042f2e;

    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --slate-950: #020617;

    --cream: #faf9f6;
    --warm-white: #fefdfb;

    --font-serif: 'Playfair Display', 'Georgia', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.07), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.06);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    color: var(--slate-800);
    background-color: var(--warm-white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

address {
    font-style: normal;
}

/* ---------- SKIP LINK ---------- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--teal-700);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-md);
    z-index: 10000;
    font-weight: 500;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 1rem;
}

/* ---------- PRELOADER ---------- */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--slate-950);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.preloader-logo {
    color: var(--teal-400);
    margin-bottom: 1.5rem;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 0.5; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1); }
}

.preloader-bar {
    width: 120px;
    height: 2px;
    background: var(--slate-800);
    border-radius: 999px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader-bar-fill {
    width: 40%;
    height: 100%;
    background: var(--teal-400);
    border-radius: 999px;
    animation: preloaderSlide 1s ease-in-out infinite;
}

@keyframes preloaderSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

/* ---------- CONTAINER ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0 3rem;
    }
}

/* ---------- HEADER ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all var(--transition-base);
}

.site-header.scrolled {
    background: rgba(254, 253, 251, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.75rem 0;
    box-shadow: 0 1px 0 var(--slate-200);
}

.site-header.scrolled .logo {
    color: var(--slate-800);
}

.site-header.scrolled .nav-link {
    color: var(--slate-600);
}

.site-header.scrolled .nav-link:hover {
    color: var(--teal-700);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* ---------- LOGO ---------- */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    transition: color var(--transition-base);
    flex-shrink: 0;
}

.logo-icon {
    color: var(--teal-300);
    flex-shrink: 0;
}

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

.logo-name {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.logo-tagline {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.7;
}

.logo--light {
    color: white;
}

/* ---------- NAV ---------- */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: all var(--transition-base);
    transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: var(--slate-950);
    padding: 6rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform var(--transition-base);
    z-index: 999;
}

.main-nav.open {
    transform: translateX(0);
}

.main-nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.nav-link {
    display: block;
    padding: 0.875rem 1rem;
    color: var(--slate-300);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.nav-link--cta {
    margin-top: 1rem;
    background: var(--teal-600);
    color: white;
    text-align: center;
    font-weight: 500;
}

.nav-link--cta:hover {
    background: var(--teal-500);
    color: white;
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

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

@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }

    .main-nav {
        position: static;
        transform: none;
        background: transparent;
        padding: 0;
        width: auto;
    }

    .main-nav::before {
        display: none;
    }

    .nav-list {
        flex-direction: row;
        gap: 0.25rem;
    }

    .nav-link {
        padding: 0.5rem 0.875rem;
        font-size: 0.875rem;
        font-weight: 500;
        letter-spacing: 0.03em;
        text-transform: uppercase;
    }

    .nav-link--cta {
        margin-top: 0;
    }

    .nav-overlay {
        display: none;
    }
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--slate-950);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.hero:hover .hero-bg-img {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(2, 6, 23, 0.6) 0%,
        rgba(2, 6, 23, 0.4) 40%,
        rgba(2, 6, 23, 0.7) 100%
    );
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

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

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-eyebrow-line {
    display: block;
    width: 48px;
    height: 1px;
    background: var(--teal-400);
    flex-shrink: 0;
}

.hero-eyebrow-text {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal-300);
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 500;
    line-height: 1.1;
    color: white;
    margin-bottom: 1.5rem;
    letter-spacing: -0.01em;
}

.hero-accent {
    color: var(--teal-300);
    font-style: italic;
}

.hero-subheadline {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--slate-300);
    max-width: 560px;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-stat-number {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: white;
    letter-spacing: -0.01em;
}

.hero-stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate-400);
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--slate-700);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--slate-400);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: heroScrollBounce 2s ease-in-out infinite;
}

@keyframes heroScrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn--primary {
    background: var(--teal-600);
    color: white;
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.3);
}

.btn--primary:hover {
    background: var(--teal-500);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline {
    background: transparent;
    color: var(--teal-700);
    border: 1.5px solid var(--teal-600);
}

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

.btn--small {
    padding: 0.625rem 1.25rem;
    font-size: 0.8rem;
}

.btn--full {
    width: 100%;
}

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

@media (min-width: 768px) {
    .section {
        padding: 8rem 0;
    }
}

.section-header {
    max-width: 680px;
}

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

.section-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--slate-900);
    letter-spacing: -0.01em;
    margin-bottom: 1.25rem;
}

.section-title--light {
    color: white;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--slate-500);
    line-height: 1.8;
    font-weight: 300;
}

/* ---------- SOURCING ---------- */
.sourcing {
    background: var(--cream);
}

.sourcing-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .sourcing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sourcing-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

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

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

@media (min-width: 768px) {
    .sourcing-card-visual {
        height: 260px;
    }
}

.sourcing-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.sourcing-card-content {
    padding: 2rem;
}

.sourcing-card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-50);
    border-radius: var(--radius-md);
    color: var(--teal-700);
    margin-bottom: 1.25rem;
}

.sourcing-card-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--slate-900);
    margin-bottom: 0.75rem;
}

.sourcing-card-text {
    font-size: 0.95rem;
    color: var(--slate-500);
    line-height: 1.75;
}

/* ---------- PRODUCTS ---------- */
.products {
    background: white;
    position: relative;
    overflow: hidden;
}

.products-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(13, 148, 136, 0.04) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(13, 148, 136, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.products .section-header {
    margin-bottom: 3.5rem;
}

.products-grid {
    display: grid;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--slate-100);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: var(--teal-100);
}

.product-card-img-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .product-card-img-wrap {
        height: 280px;
    }
}

.product-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.product-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--teal-600);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-sm);
}

.product-card-info {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--slate-900);
    margin-bottom: 0.5rem;
}

.product-card-desc {
    font-size: 0.9rem;
    color: var(--slate-500);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1.25rem;
}

.product-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--teal-700);
    transition: gap var(--transition-fast);
}

.product-card:hover .product-card-link {
    gap: 0.75rem;
}

.products-cta {
    text-align: center;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.products-cta-text {
    font-size: 1rem;
    color: var(--slate-500);
    margin-bottom: 1.5rem;
}

/* ---------- HERITAGE ---------- */
.heritage {
    background: var(--slate-950);
    position: relative;
    overflow: hidden;
}

.heritage::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(13, 148, 136, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.heritage .container {
    position: relative;
    z-index: 1;
}

.heritage-layout {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 900px) {
    .heritage-layout {
        grid-template-columns: 1fr 1fr;
    }
}

.heritage-images {
    position: relative;
    min-height: 500px;
}

.heritage-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.heritage-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.heritage-img-accent {
    position: absolute;
    bottom: -2rem;
    right: -1rem;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--slate-950);
}

.heritage-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.heritage-seal {
    position: absolute;
    top: -1.5rem;
    right: 2rem;
    color: var(--teal-400);
    opacity: 0.6;
}

.heritage-content {
    padding: 1rem 0;
}

.heritage-text {
    font-size: 1.05rem;
    color: var(--slate-400);
    line-height: 1.85;
    margin-bottom: 1.25rem;
    font-weight: 300;
}

.heritage-values {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.heritage-value {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.heritage-value-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(13, 148, 136, 0.15);
    border-radius: var(--radius-md);
    color: var(--teal-400);
    flex-shrink: 0;
}

.heritage-value-text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--slate-200);
}

/* ---------- ABOUT ---------- */
.about {
    background: var(--cream);
}

.about-layout {
    display: grid;
    gap: 4rem;
    align-items: start;
}

@media (min-width: 900px) {
    .about-layout {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.about-content {
    max-width: 520px;
}

.about-text {
    font-size: 1.05rem;
    color: var(--slate-500);
    line-height: 1.85;
    margin-bottom: 1.25rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.about-feature {
    position: relative;
    padding-left: 4rem;
}

.about-feature::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--slate-200);
}

.about-feature:first-child::before {
    top: 50%;
}

.about-feature:last-child::before {
    bottom: 50%;
}

.about-feature-number {
    position: absolute;
    left: 0;
    top: 0;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--teal-100);
    line-height: 1;
}

.about-feature-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--slate-900);
    margin-bottom: 0.5rem;
}

.about-feature-text {
    font-size: 0.95rem;
    color: var(--slate-500);
    line-height: 1.75;
}

/* ---------- VISIT ---------- */
.visit {
    background: white;
}

.visit-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.visit-grid {
    display: grid;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 900px) {
    .visit-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

.visit-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.visit-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.75rem;
    background: var(--slate-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--slate-100);
    transition: all var(--transition-fast);
}

.visit-card:hover {
    background: white;
    border-color: var(--teal-100);
    box-shadow: var(--shadow-lg);
}

.visit-card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-50);
    border-radius: var(--radius-md);
    color: var(--teal-700);
    flex-shrink: 0;
}

.visit-card-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--slate-900);
    margin-bottom: 0.5rem;
}

.visit-card-address {
    font-size: 0.95rem;
    color: var(--slate-500);
    line-height: 1.7;
}

.visit-card-hours {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.visit-hours-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.9rem;
}

.visit-hours-row span:first-child {
    color: var(--slate-500);
}

.visit-hours-row span:last-child {
    font-weight: 500;
    color: var(--slate-800);
}

.visit-card-phone a,
.visit-card-email a {
    color: var(--teal-700);
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.visit-card-phone a:hover,
.visit-card-email a:hover {
    color: var(--teal-500);
}

.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.visit-map-placeholder {
    background: var(--slate-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
}

.visit-map-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--slate-100) 0%, var(--slate-200) 100%);
    text-align: center;
    padding: 2rem;
}

.visit-map-icon {
    color: var(--teal-600);
    opacity: 0.6;
}

.visit-map-address {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--slate-700);
    line-height: 1.6;
    max-width: 240px;
}

.visit-map-inner .btn {
    margin-top: 0.5rem;
}

/* ---------- CONTACT ---------- */
.contact {
    background: var(--cream);
}

.contact-layout {
    display: grid;
    gap: 4rem;
    align-items: start;
}

@media (min-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
    }
}

.contact-content {
    max-width: 480px;
}

.contact-text {
    font-size: 1.05rem;
    color: var(--slate-500);
    line-height: 1.85;
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--slate-600);
    font-size: 0.95rem;
}

.contact-detail svg {
    color: var(--teal-600);
    flex-shrink: 0;
}

.contact-detail a {
    color: var(--slate-600);
    transition: color var(--transition-fast);
}

.contact-detail a:hover {
    color: var(--teal-700);
}

/* ---------- CONTACT FORM ---------- */
.contact-form-wrap {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--slate-100);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--slate-700);
    letter-spacing: 0.02em;
}

.form-optional {
    font-weight: 400;
    color: var(--slate-400);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--slate-800);
    background: var(--slate-50);
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    outline: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--teal-400);
    background: white;
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--slate-400);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    text-align: center;
    padding: 2rem;
}

.form-success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-50);
    border-radius: 50%;
    color: var(--teal-600);
}

.form-success-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--slate-900);
    margin-bottom: 0.75rem;
}

.form-success-text {
    font-size: 0.95rem;
    color: var(--slate-500);
    line-height: 1.7;
}

/* ---------- FOOTER ---------- */
.site-footer {
    background: var(--slate-950);
    color: var(--slate-400);
    padding: 4rem 0 0;
}

.footer-top {
    display: grid;
    gap: 3rem;
    padding-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-top {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand {
    max-width: 300px;
}

.footer-brand .logo {
    margin-bottom: 1.25rem;
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--slate-500);
}

.footer-links-title {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--slate-200);
    margin-bottom: 1.25rem;
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-nav-list a {
    font-size: 0.9rem;
    color: var(--slate-500);
    transition: color var(--transition-fast);
}

.footer-nav-list a:hover {
    color: var(--teal-400);
}

.footer-contact address {
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 0.375rem;
}

.footer-contact a {
    color: var(--slate-500);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    border-top: 1px solid var(--slate-800);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.8rem;
    color: var(--slate-600);
}

.footer-location {
    font-size: 0.8rem;
    color: var(--slate-600);
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-700);
    color: white;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-base);
    z-index: 100;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--teal-600);
    transform: translateY(-2px);
}

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ---------- MOBILE RESPONSIVE ---------- */
@media (max-width: 767px) {
    .hero-content {
        padding: 7rem 0 3rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .heritage-images {
        min-height: 400px;
    }

    .heritage-img-accent {
        width: 60%;
        bottom: -1rem;
        right: 0;
    }

    .contact-form-wrap {
        padding: 1.75rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .hero-stat-divider {
        display: none;
    }
}
