/* ============================================
   PSALMS 23 COFFEE — STYLESHEET
   Palette: Burgundy (#7B2D3B) + Blush (#F5E6E0)
   Fonts: Lora (serif) + Montserrat (sans)
   ============================================ */

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

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

body {
    font-family: 'Montserrat', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2D1F24;
    background-color: #FFFAF8;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: #7B2D3B;
    color: #fff;
    padding: 0.5rem 1rem;
    z-index: 9999;
    border-radius: 0 0 8px 8px;
    font-size: 0.875rem;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

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

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

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 {
    font-family: 'Lora', Georgia, serif;
    line-height: 1.2;
    font-weight: 600;
}

.section-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #7B2D3B;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: #2D1F24;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: #6B5560;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: #7B2D3B;
    color: #fff;
    border: 2px solid #7B2D3B;
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: #5E2130;
    border-color: #5E2130;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(123, 45, 59, 0.3);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-outline:hover,
.btn-outline:focus-visible {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* ---------- HEADER ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 250, 248, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(123, 45, 59, 0.08);
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 24px rgba(45, 31, 36, 0.08);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: #7B2D3B;
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.2;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.8;
}

.logo-mark {
    flex-shrink: 0;
}

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

.logo-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #6B5560;
}

.logo-light {
    color: #fff;
}

.logo-light .logo-sub {
    color: rgba(255, 255, 255, 0.7);
}

/* Nav */
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.main-nav a {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #2D1F24;
    border-radius: 6px;
    transition: color 0.3s, background 0.3s;
}

.main-nav a:hover {
    color: #7B2D3B;
    background: rgba(123, 45, 59, 0.06);
}

.nav-cta {
    background: #7B2D3B;
    color: #fff !important;
    border-radius: 6px;
    margin-left: 0.5rem;
    transition: background 0.3s, transform 0.3s !important;
}

.nav-cta:hover {
    background: #5E2130 !important;
    color: #fff !important;
    transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.3s;
}

.nav-toggle:hover {
    background: rgba(123, 45, 59, 0.06);
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 20px;
    height: 2px;
    background: #2D1F24;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger {
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger::before {
    top: -6px;
}

.hamburger::after {
    top: 6px;
}

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

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

    .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255, 250, 248, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 1rem 1.5rem 1.5rem;
        border-bottom: 1px solid rgba(123, 45, 59, 0.08);
        box-shadow: 0 12px 32px rgba(45, 31, 36, 0.1);
        transform: translateY(-110%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.35s ease;
        z-index: 999;
    }

    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0.25rem;
        width: 100%;
    }

    .main-nav a {
        display: block;
        padding: 0.75rem 1rem;
        font-size: 1rem;
        width: 100%;
    }

    .nav-cta {
        margin-left: 0;
        text-align: center;
        margin-top: 0.5rem;
    }
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #2D1F24;
}

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

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
}

.hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(45, 31, 36, 0.88) 0%,
        rgba(123, 45, 59, 0.75) 50%,
        rgba(45, 31, 36, 0.85) 100%
    );
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: radial-gradient(circle at 25% 25%, #fff 1px, transparent 1px),
                      radial-gradient(circle at 75% 75%, #fff 1px, transparent 1px);
    background-size: 48px 48px;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 780px;
    padding: 8rem 1.5rem 6rem;
}

.hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(245, 230, 224, 0.8);
    margin-bottom: 1.25rem;
}

.hero-headline {
    font-size: clamp(2.25rem, 5.5vw, 4rem);
    color: #fff;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-headline br {
    display: none;
}

.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: rgba(245, 230, 224, 0.85);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 2.5rem;
}

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

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(245, 230, 224, 0.5);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-scroll svg {
    animation: scrollBounce 2s ease-in-out infinite;
}

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

@media (min-width: 769px) {
    .hero-headline br {
        display: block;
    }
}

/* ---------- INFO BAR ---------- */
.info-bar {
    background: #7B2D3B;
    padding: 1rem 0;
}

.info-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(245, 230, 224, 0.9);
    font-size: 0.85rem;
    font-weight: 500;
}

.info-icon {
    flex-shrink: 0;
    opacity: 0.8;
}

.info-item a {
    transition: color 0.3s;
}

.info-item a:hover {
    color: #fff;
}

@media (max-width: 640px) {
    .info-grid {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* ---------- ABOUT ---------- */
.about {
    padding: 6rem 0;
    background: #FFFAF8;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(45, 31, 36, 0.12);
}

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

.about-img-secondary {
    position: absolute;
    bottom: -2rem;
    right: -1rem;
    width: 55%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(45, 31, 36, 0.15);
    border: 4px solid #FFFAF8;
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    top: -1rem;
    right: 1rem;
    background: #7B2D3B;
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(123, 45, 59, 0.3);
}

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

.about-content p {
    color: #6B5560;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(123, 45, 59, 0.12);
}

.stat {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-family: 'Lora', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #7B2D3B;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6B5560;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(123, 45, 59, 0.15);
}

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

/* ---------- MENU ---------- */
.menu {
    padding: 6rem 0;
    background: #F5E6E0;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.menu-category {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(45, 31, 36, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.menu-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(45, 31, 36, 0.1);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #F5E6E0;
}

.category-icon {
    color: #7B2D3B;
    flex-shrink: 0;
}

.category-title {
    font-size: 1.25rem;
    color: #2D1F24;
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.menu-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding-bottom: 0.875rem;
    border-bottom: 1px solid rgba(245, 230, 224, 0.8);
}

.menu-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.menu-item-name {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 1rem;
    color: #2D1F24;
}

.menu-item-desc {
    font-size: 0.85rem;
    color: #8B7078;
    text-align: right;
    flex-shrink: 0;
    max-width: 200px;
    line-height: 1.4;
}

.menu-note {
    padding: 2rem 0 0;
}

.menu-note p {
    color: #6B5560;
    font-size: 0.9rem;
    font-style: italic;
}

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

@media (min-width: 1100px) {
    .menu-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .menu-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(245, 230, 224, 0.8);
    }

    .menu-list li:last-child {
        padding-bottom: 0;
    }

    .menu-item-desc {
        text-align: left;
        max-width: none;
    }
}

/* ---------- COMMUNITY ---------- */
.community {
    padding: 6rem 0;
    background: #FFFAF8;
}

.community-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.community-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.community-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(45, 31, 36, 0.1);
}

.community-images img:first-child {
    height: 280px;
}

.community-images img:last-child {
    height: 200px;
}

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

.community-content p {
    color: #6B5560;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.community-features {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.community-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #2D1F24;
    font-weight: 500;
}

.community-features svg {
    color: #7B2D3B;
    flex-shrink: 0;
}

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

    .community-images {
        grid-template-columns: 3fr 2fr;
        grid-template-rows: 200px 200px;
    }

    .community-images img:first-child {
        grid-column: 1 / -1;
        height: 220px;
    }

    .community-images img:last-child {
        grid-column: 2;
        grid-row: 2;
        height: 100%;
    }
}

/* ---------- TESTIMONIAL ---------- */
.testimonial {
    padding: 5rem 0;
    background: #7B2D3B;
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: radial-gradient(circle at 20% 50%, #fff 1px, transparent 1px),
                      radial-gradient(circle at 80% 50%, #fff 1px, transparent 1px);
    background-size: 40px 40px;
}

.testimonial-content {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-quote {
    color: rgba(245, 230, 224, 0.25);
    margin-bottom: 1rem;
}

.testimonial-text {
    font-family: 'Lora', serif;
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    font-style: italic;
    color: #fff;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.testimonial-author {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(245, 230, 224, 0.7);
    letter-spacing: 0.05em;
}

/* ---------- VISIT ---------- */
.visit {
    padding: 6rem 0;
    background: #F5E6E0;
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

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

.visit-address {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 2rem 0;
    font-style: normal;
    font-size: 1rem;
    color: #2D1F24;
    line-height: 1.6;
}

.visit-icon {
    color: #7B2D3B;
    flex-shrink: 0;
    margin-top: 2px;
}

.visit-hours {
    margin-bottom: 2rem;
}

.visit-hours-title {
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #7B2D3B;
    margin-bottom: 0.75rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(123, 45, 59, 0.1);
}

.hours-list .day {
    font-weight: 600;
    color: #2D1F24;
}

.hours-list .time {
    color: #6B5560;
}

.visit-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.visit-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #6B5560;
    transition: color 0.3s;
}

.visit-contact-item:hover {
    color: #7B2D3B;
}

.visit-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(45, 31, 36, 0.1);
    min-height: 300px;
}

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

/* ---------- CONTACT ---------- */
.contact {
    padding: 6rem 0;
    background: #FFFAF8;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

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

.contact-content p {
    color: #6B5560;
    line-height: 1.7;
}

.contact-form {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(45, 31, 36, 0.06);
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #2D1F24;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: #2D1F24;
    background: #FFFAF8;
    border: 2px solid rgba(123, 45, 59, 0.12);
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
}

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

.form-group input:focus,
.form-group textarea:focus {
    border-color: #7B2D3B;
    box-shadow: 0 0 0 4px rgba(123, 45, 59, 0.08);
}

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

.form-success {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(123, 45, 59, 0.06);
    border: 1px solid rgba(123, 45, 59, 0.15);
    border-radius: 8px;
    color: #7B2D3B;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

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

/* ---------- FOOTER ---------- */
.site-footer {
    background: #2D1F24;
    color: rgba(245, 230, 224, 0.7);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
}

.footer-brand p {
    margin-top: 1rem;
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245, 230, 224, 0.5);
    margin-bottom: 1rem;
}

.footer-links ul,
.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(245, 230, 224, 0.7);
    transition: color 0.3s, padding-left 0.3s;
}

.footer-links a:hover {
    color: #F5E6E0;
    padding-left: 4px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-contact svg {
    flex-shrink: 0;
    margin-top: 3px;
    opacity: 0.6;
}

.footer-contact a {
    color: rgba(245, 230, 224, 0.7);
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid rgba(245, 230, 224, 0.08);
    padding: 1.5rem 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(245, 230, 224, 0.4);
}

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

    .footer-bottom-inner {
        justify-content: space-between;
    }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .hero-scroll svg {
        animation: none;
    }
}

/* ---------- SCROLL REVEAL (progressive enhancement) ---------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
    }
}
