/* ============================================
   Papi's Food Market — Stylesheet
   Classic & Elegant · Forest Green + Off-White
   ============================================ */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Lora', Georgia, 'Times New Roman', serif;
    font-size: 16px;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #F5F0E8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, svg {
    display: block;
    max-width: 100%;
}

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;
}

/* ---------- Utility ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
    color: #1B3A2D;
}

.section-eyebrow {
    font-family: 'Lora', serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #4A7C5D;
    margin-bottom: 12px;
}

.section-eyebrow--dark {
    color: #6B9B7E;
}

.section-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: 20px;
    color: #1B3A2D;
}

.section-heading--light {
    color: #F5F0E8;
}

.section-heading--dark {
    color: #F5F0E8;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Lora', serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn--primary {
    background-color: #1B3A2D;
    color: #F5F0E8;
    border: 2px solid #1B3A2D;
}

.btn--primary:hover,
.btn--primary:focus-visible {
    background-color: #2A5240;
    border-color: #2A5240;
}

.btn--ghost {
    background-color: transparent;
    color: #F5F0E8;
    border: 2px solid rgba(245, 240, 232, 0.6);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
    background-color: rgba(245, 240, 232, 0.1);
    border-color: #F5F0E8;
}

.btn--dark {
    background-color: #1B3A2D;
    color: #F5F0E8;
    border: 2px solid #1B3A2D;
}

.btn--dark:hover,
.btn--dark:focus-visible {
    background-color: #2A5240;
    border-color: #2A5240;
}

.btn--outline-dark {
    background-color: transparent;
    color: #1B3A2D;
    border: 2px solid #1B3A2D;
}

.btn--outline-dark:hover,
.btn--outline-dark:focus-visible {
    background-color: #1B3A2D;
    color: #F5F0E8;
}

.btn--forest {
    background-color: #4A7C5D;
    color: #F5F0E8;
    border: 2px solid #4A7C5D;
}

.btn--forest:hover,
.btn--forest:focus-visible {
    background-color: #3D6B4E;
    border-color: #3D6B4E;
}

.btn--small {
    padding: 10px 24px;
    font-size: 0.8rem;
}

.btn--large {
    padding: 16px 40px;
    font-size: 0.9rem;
}

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(27, 58, 45, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(245, 240, 232, 0.1);
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #F5F0E8;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(245, 240, 232, 0.4);
    border-radius: 50%;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #F5F0E8;
    letter-spacing: 0.02em;
}

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

.nav-toggle-line {
    display: block;
    width: 24px;
    height: 1.5px;
    background-color: #F5F0E8;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

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

.nav-toggle[aria-expanded="true"] .nav-toggle-line:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: 'Lora', serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.8);
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #F5F0E8;
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: #F5F0E8;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
    width: 100%;
}

.nav-link--cta {
    padding: 8px 20px;
    border: 1px solid rgba(245, 240, 232, 0.4);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-link--cta::after {
    display: none;
}

.nav-link--cta:hover {
    background-color: rgba(245, 240, 232, 0.1);
    border-color: rgba(245, 240, 232, 0.7);
}

/* Mobile nav */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-list {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        background-color: #1B3A2D;
        padding: 40px;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
    }

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

    .nav-link {
        font-size: 0.9rem;
        letter-spacing: 0.12em;
    }

    .nav-link--cta {
        margin-top: 8px;
    }
}

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

/* Mobile overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.nav-overlay.active {
    display: block;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    background-color: #1B3A2D;
}

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

.hero-bg::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-image: url('https://images.pexels.com/photos/4947415/pexels-photo-4947415.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 32, 22, 0.82) 0%,
        rgba(27, 58, 45, 0.75) 50%,
        rgba(15, 32, 22, 0.88) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    padding: 120px 24px 80px;
}

.hero-eyebrow {
    font-family: 'Lora', serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.7);
    margin-bottom: 24px;
}

.hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.25;
    color: #F5F0E8;
    margin-bottom: 24px;
}

.hero-sub {
    font-family: 'Lora', serif;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.8;
    color: rgba(245, 240, 232, 0.8);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(245, 240, 232, 0.5);
    font-family: 'Lora', serif;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(245, 240, 232, 0.5), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ---------- Intro / About ---------- */
.intro {
    padding: 120px 0;
    background-color: #F5F0E8;
}

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

@media (min-width: 900px) {
    .intro-grid {
        grid-template-columns: 1fr 1.1fr;
        gap: 64px;
    }
}

.intro-image-wrap {
    overflow: hidden;
    border-radius: 6px;
}

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

.intro-image-wrap:hover img {
    transform: scale(1.02);
}

.intro-text {
    max-width: 560px;
}

.intro-text p {
    font-size: 1.05rem;
    color: #2a2a2a;
    margin-bottom: 20px;
}

.intro-signature {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(27, 58, 45, 0.2);
}

.signature-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: #4A7C5D;
}

/* ---------- Features ---------- */
.features {
    padding: 120px 0;
    background-color: #1B3A2D;
}

.features-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.features-header .section-eyebrow {
    color: rgba(245, 240, 232, 0.6);
}

.features-header .section-heading {
    color: #F5F0E8;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

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

.feature-card {
    padding: 40px 32px;
    background-color: rgba(245, 240, 232, 0.05);
    border: 1px solid rgba(245, 240, 232, 0.1);
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background-color: rgba(245, 240, 232, 0.08);
    border-color: rgba(245, 240, 232, 0.2);
    transform: translateY(-4px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 24px;
    color: #A8C5B0;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #F5F0E8;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.95rem;
    color: rgba(245, 240, 232, 0.75);
    line-height: 1.7;
}

.feature-note {
    margin-top: 12px;
    font-size: 0.8rem !important;
    font-style: italic;
    color: rgba(245, 240, 232, 0.5) !important;
}

/* ---------- Menu Preview ---------- */
.menu-preview {
    padding: 120px 0;
    background-color: #F5F0E8;
}

.menu-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.menu-header .section-heading {
    color: #1B3A2D;
}

.menu-intro {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.menu-columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 900px) {
    .menu-columns {
        grid-template-columns: repeat(3, 1fr);
        gap: 48px;
    }
}

.menu-column {
    padding: 40px 32px;
    background-color: #fff;
    border-radius: 6px;
    border: 1px solid rgba(27, 58, 45, 0.08);
    box-shadow: 0 2px 16px rgba(27, 58, 45, 0.04);
}

.menu-column-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #1B3A2D;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(27, 58, 45, 0.15);
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.menu-list li {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.menu-item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1B3A2D;
}

.menu-item-desc {
    font-size: 0.85rem;
    color: #6b6b6b;
    font-style: italic;
}

.menu-note {
    text-align: center;
    margin-top: 48px;
    font-size: 0.9rem;
    color: #6b6b6b;
    font-style: italic;
}

/* ---------- Experience / Gallery ---------- */
.experience {
    padding: 120px 0;
    background-color: #EDE7DB;
}

.experience-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.experience-intro {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.experience-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .experience-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 300px 260px;
        gap: 20px;
    }

    .experience-gallery-item--large {
        grid-column: 1 / -1;
        grid-row: 1;
    }

    .experience-gallery-item:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }

    .experience-gallery-item:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }
}

.experience-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    cursor: default;
}

.experience-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

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

.experience-gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(to top, rgba(15, 32, 22, 0.85), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
}

.experience-time {
    font-family: 'Lora', serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.6);
}

.experience-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #F5F0E8;
}

/* ---------- CTA ---------- */
.cta {
    padding: 100px 0;
    background-color: #1B3A2D;
    text-align: center;
}

.cta-inner {
    max-width: 640px;
    margin: 0 auto;
}

.cta .section-eyebrow {
    color: rgba(245, 240, 232, 0.6);
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(245, 240, 232, 0.8);
    line-height: 1.8;
    margin-bottom: 36px;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ---------- Visit ---------- */
.visit {
    padding: 120px 0;
    background-color: #F5F0E8;
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

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

.visit-info {
    max-width: 520px;
}

.visit-address {
    margin: 24px 0 32px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #2a2a2a;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(27, 58, 45, 0.15);
}

.visit-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.visit-detail-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #4A7C5D;
}

.visit-detail-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1B3A2D;
    transition: color 0.3s ease;
}

.visit-detail-value:hover {
    color: #4A7C5D;
}

.visit-hours-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1B3A2D;
    margin-bottom: 16px;
}

.visit-hours-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.visit-hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    font-size: 0.95rem;
    color: #2a2a2a;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(27, 58, 45, 0.08);
}

.visit-hours-note {
    margin-top: 16px;
    font-size: 0.8rem;
    color: #6b6b6b;
    font-style: italic;
}

/* Map placeholder */
.visit-map {
    width: 100%;
}

.map-placeholder {
    width: 100%;
    min-height: 400px;
    background-color: #EDE7DB;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(27, 58, 45, 0.1);
}

.map-placeholder-inner {
    width: 100%;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 40px;
    text-align: center;
    background-image: url('https://images.pexels.com/photos/2422363/pexels-photo-2422363.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=800&h=500');
    background-size: cover;
    background-position: center;
    position: relative;
}

.map-placeholder-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(27, 58, 45, 0.55);
}

.map-placeholder-inner > * {
    position: relative;
    z-index: 1;
}

.map-pin {
    width: 48px;
    height: 48px;
    color: #F5F0E8;
}

.map-address {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #F5F0E8;
    line-height: 1.5;
}

/* ---------- Contact ---------- */
.contact {
    padding: 120px 0;
    background-color: #EDE7DB;
}

.contact-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.contact-intro {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 48px;
}

.contact-form {
    text-align: left;
}

.contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 599px) {
    .contact-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-family: 'Lora', serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4A7C5D;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Lora', serif;
    font-size: 1rem;
    color: #1a1a1a;
    background-color: #fff;
    border: 1px solid rgba(27, 58, 45, 0.2);
    border-radius: 4px;
    padding: 12px 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #4A7C5D;
    box-shadow: 0 0 0 3px rgba(74, 124, 93, 0.15);
}

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

.form-success {
    margin-top: 20px;
    padding: 16px 20px;
    background-color: rgba(74, 124, 93, 0.1);
    border: 1px solid rgba(74, 124, 93, 0.3);
    border-radius: 4px;
    font-size: 0.95rem;
    color: #1B3A2D;
    text-align: center;
}

/* ---------- Footer ---------- */
.site-footer {
    background-color: #142C20;
    padding: 64px 0 32px;
    color: rgba(245, 240, 232, 0.6);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-brand .logo-mark {
    width: 48px;
    height: 48px;
    font-size: 2rem;
}

.footer-brand .logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #F5F0E8;
}

.footer-tagline {
    font-size: 0.85rem;
    color: rgba(245, 240, 232, 0.5);
    font-style: italic;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.footer-nav a {
    font-family: 'Lora', serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.6);
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #F5F0E8;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
}

.footer-contact a {
    color: rgba(245, 240, 232, 0.6);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #F5F0E8;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(245, 240, 232, 0.1);
    font-size: 0.8rem;
    color: rgba(245, 240, 232, 0.4);
    width: 100%;
    text-align: center;
}

/* ---------- Scroll Reveal (progressive enhancement) ---------- */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    .reveal:nth-child(2) { transition-delay: 0.1s; }
    .reveal:nth-child(3) { transition-delay: 0.2s; }
}

/* ---------- Focus visible ---------- */
:focus-visible {
    outline: 2px solid #4A7C5D;
    outline-offset: 2px;
}

/* ---------- Selection ---------- */
::selection {
    background-color: rgba(74, 124, 93, 0.3);
    color: #1B3A2D;
}
