/* ─────────────────────────────────────────────
   Kum Wah Restaurant — Stylesheet
   Classic · Elegant · Emerald & Cream
   ───────────────────────────────────────────── */

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

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

body {
    background-color: #fefdf8;
    color: #052e16;
    font-family: 'Lora', Georgia, serif;
    font-size: 16px;
    line-height: 1.75;
    -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;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: #052e16;
    color: #fef3c7;
    padding: 0.5rem 1rem;
    z-index: 1000;
    border-radius: 0 0 4px 4px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.875rem;
}
.skip-link:focus {
    top: 0;
}

::selection {
    background: #166534;
    color: #fef3c7;
}

/* ── Section Shared ── */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-label {
    display: inline-block;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #166534;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 500;
    line-height: 1.15;
    color: #052e16;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.section-title--light {
    color: #fef3c7;
}

.section-ornament {
    color: #166534;
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

.section-ornament--light {
    color: #fef3c7;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.875rem 1.75rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-emerald {
    background: #166534;
    color: #fef3c7;
    border: 1.5px solid #166534;
}
.btn-emerald:hover {
    background: #14532d;
    border-color: #14532d;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(5, 46, 22, 0.3);
}

.btn-cream {
    background: #fef3c7;
    color: #052e16;
    border: 1.5px solid #fef3c7;
}
.btn-cream:hover {
    background: #fefce8;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(254, 243, 199, 0.4);
}

.btn-ghost {
    background: transparent;
    color: #fef3c7;
    border: 1.5px solid rgba(254, 243, 199, 0.5);
}
.btn-ghost:hover {
    background: rgba(254, 243, 199, 0.1);
    border-color: #fef3c7;
}

.btn-emerald-outline {
    background: transparent;
    color: #166534;
    border: 1.5px solid #166534;
}
.btn-emerald-outline:hover {
    background: #166534;
    color: #fef3c7;
    transform: translateY(-1px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ─────────────────────────────────────────────
   Header / Navigation
   ───────────────────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0 1.5rem;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
    background: transparent;
}

.site-header.scrolled {
    background: rgba(254, 253, 248, 0.97);
    box-shadow: 0 1px 0 rgba(5, 46, 22, 0.08);
    padding-top: 0;
    padding-bottom: 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    z-index: 101;
}

.nav-logo-char {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fef3c7;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(254, 243, 199, 0.5);
    border-radius: 4px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.site-header.scrolled .nav-logo-char {
    color: #052e16;
    border-color: #166534;
}

.nav-logo-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.125rem;
    font-weight: 500;
    color: #fef3c7;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.site-header.scrolled .nav-logo-text {
    color: #052e16;
}

/* Mobile Toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    z-index: 101;
}

.menu-toggle-line {
    display: block;
    width: 22px;
    height: 1.5px;
    background: #fef3c7;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
    transform-origin: center;
}

.site-header.scrolled .menu-toggle-line {
    background: #052e16;
}

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

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links li a {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fef3c7;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.nav-links li a:hover {
    opacity: 1;
}

.site-header.scrolled .nav-links li a {
    color: #052e16;
}

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

    .nav-links {
        position: fixed;
        inset: 0;
        background: rgba(5, 46, 22, 0.97);
        flex-direction: column;
        justify-content: center;
        gap: 1.5rem;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-links li a {
        font-family: 'Playfair Display', Georgia, serif;
        font-size: 1.5rem;
        font-weight: 400;
        text-transform: none;
        letter-spacing: 0;
        color: #fef3c7;
        opacity: 1;
    }

    .nav-links li .btn-emerald {
        font-size: 0.875rem;
        padding: 0.75rem 1.5rem;
    }
}

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

/* ─────────────────────────────────────────────
   Hero
   ───────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 1.5rem 4rem;
    background: linear-gradient(
        145deg,
        #052e16 0%,
        #064e3b 25%,
        #134e4a 50%,
        #1e3a5f 75%,
        #1e2d4a 100%
    );
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image:
        radial-gradient(circle at 20% 30%, #fef3c7 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, #fef3c7 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, #fef3c7 0.5px, transparent 0.5px);
    background-size: 60px 60px, 80px 80px, 40px 40px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 780px;
}

.hero-ornament {
    margin-bottom: 2rem;
    opacity: 0.5;
    animation: heroOrnament 6s ease-in-out infinite;
}

@keyframes heroOrnament {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(15deg); }
}

.hero-eyebrow {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #fef3c7;
    opacity: 0.6;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 500;
    line-height: 1.1;
    color: #fef3c7;
    margin-bottom: 1.75rem;
    letter-spacing: -0.02em;
}

.hero-title-line {
    display: block;
}

.hero-title-accent {
    font-style: italic;
    font-weight: 400;
    opacity: 0.9;
}

.hero-desc {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(1rem, 1.5vw, 1.1875rem);
    line-height: 1.8;
    color: rgba(254, 243, 199, 0.75);
    max-width: 560px;
    margin: 0 auto 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.4;
}

.hero-divider svg {
    animation: heroDividerSpin 8s linear infinite;
}

@keyframes heroDividerSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-tagline {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(254, 243, 199, 0.5);
}

.tagline-sep {
    margin: 0 0.75rem;
    font-size: 0.5rem;
    vertical-align: middle;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(254, 243, 199, 0.4);
    animation: scrollBounce 2s ease-in-out infinite;
}

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

/* ─────────────────────────────────────────────
   Heritage
   ───────────────────────────────────────────── */
.heritage {
    padding: 7rem 0;
    background: #fefdf8;
}

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

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

.heritage-text .section-label {
    margin-bottom: 0.75rem;
}

.heritage-p {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: #14532d;
    margin-bottom: 1.25rem;
}

.heritage-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(5, 46, 22, 0.1);
}

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

.heritage-stat-number {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 600;
    color: #166534;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.heritage-stat-label {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.6875rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #14532d;
    opacity: 0.7;
    line-height: 1.4;
}

.heritage-stat-divider {
    width: 1px;
    background: rgba(5, 46, 22, 0.12);
    align-self: stretch;
    margin: 0 0.25rem;
}

.heritage-image {
    position: relative;
}

.heritage-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(5, 46, 22, 0.12);
}

.heritage-image-accent {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 100px;
    height: 100px;
    border: 1.5px solid #166534;
    border-radius: 4px;
    opacity: 0.2;
    z-index: -1;
}

@media (min-width: 900px) {
    .heritage-image img {
        height: 600px;
    }
}

/* ─────────────────────────────────────────────
   Signatures
   ───────────────────────────────────────────── */
.signatures {
    padding: 7rem 0;
    background: #052e16;
    position: relative;
}

.signatures::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(22, 101, 52, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(19, 78, 74, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.signatures-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.signatures-subtitle {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(254, 243, 199, 0.6);
    max-width: 520px;
    margin: 0 auto;
}

.signatures-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

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

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

.sig-card {
    background: rgba(254, 253, 248, 0.04);
    border: 1px solid rgba(254, 243, 199, 0.08);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.sig-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
    border-color: rgba(254, 243, 199, 0.15);
}

.sig-card-img {
    position: relative;
    overflow: hidden;
}

.sig-card-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.sig-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #052e16;
    background: #fef3c7;
    padding: 0.3rem 0.625rem;
    border-radius: 3px;
}

.sig-card-body {
    padding: 1.5rem;
}

.sig-card-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: #fef3c7;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.sig-card-desc {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: rgba(254, 243, 199, 0.55);
}

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

/* ─────────────────────────────────────────────
   Dining
   ───────────────────────────────────────────── */
.dining {
    padding: 7rem 0;
    background: #fefdf8;
}

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

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

.dining-image-group {
    position: relative;
}

.dining-img-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(5, 46, 22, 0.1);
}

.dining-img-secondary {
    position: absolute;
    bottom: -2rem;
    right: -1rem;
    width: 55%;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(5, 46, 22, 0.15);
    border: 4px solid #fefdf8;
}

.dining-img-secondary img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

@media (min-width: 900px) {
    .dining-img-main img {
        height: 520px;
    }
    .dining-img-secondary img {
        height: 260px;
    }
}

.dining-content .section-label {
    margin-bottom: 0.75rem;
}

.dining-p {
    font-size: 1.0625rem;
    line-height: 1.85;
    color: #14532d;
    margin-bottom: 1.25rem;
}

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

.dining-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.dining-feature-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(5, 46, 22, 0.15);
    border-radius: 6px;
    color: #166534;
}

.dining-feature-label {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.0625rem;
    font-weight: 500;
    color: #052e16;
    margin-bottom: 0.125rem;
}

.dining-feature-desc {
    font-size: 0.875rem;
    color: #14532d;
    opacity: 0.7;
    line-height: 1.5;
}

/* ─────────────────────────────────────────────
   Visit
   ───────────────────────────────────────────── */
.visit {
    padding: 7rem 0;
    background: #052e16;
    position: relative;
}

.visit::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(22, 101, 52, 0.25) 0%, transparent 60%);
    pointer-events: none;
}

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

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

.visit-info .section-label {
    color: rgba(254, 243, 199, 0.5);
}

.visit-details {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.visit-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.visit-detail-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fef3c7;
    opacity: 0.7;
}

.visit-detail-label {
    display: block;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(254, 243, 199, 0.45);
    margin-bottom: 0.25rem;
}

.visit-detail-value {
    font-family: 'Lora', Georgia, serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #fef3c7;
}

.visit-phone:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.visit-map {
    margin-top: 2.5rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Form */
.visit-form-wrap {
    max-width: 100%;
}

@media (min-width: 600px) {
    .visit-form-wrap {
        max-width: 440px;
        align-self: start;
    }
}

.visit-form-card {
    background: rgba(254, 253, 248, 0.05);
    border: 1px solid rgba(254, 243, 199, 0.1);
    border-radius: 10px;
    padding: 2.5rem;
}

.visit-form-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #fef3c7;
    margin-bottom: 0.5rem;
}

.visit-form-subtitle {
    font-size: 0.9375rem;
    color: rgba(254, 243, 199, 0.55);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    margin-bottom: 1rem;
}

.form-group--full {
    margin-bottom: 1.5rem;
}

.form-group label {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(254, 243, 199, 0.5);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Lora', Georgia, serif;
    font-size: 0.9375rem;
    color: #fef3c7;
    background: rgba(254, 253, 248, 0.06);
    border: 1px solid rgba(254, 243, 199, 0.15);
    border-radius: 4px;
    padding: 0.75rem 0.875rem;
    outline: none;
    transition: border-color 0.3s ease, background 0.3s ease;
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(254, 243, 199, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #fef3c7;
    background: rgba(254, 253, 248, 0.08);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(254,243,199,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2.25rem;
}

.form-group select option {
    background: #052e16;
    color: #fef3c7;
}

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

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

.form-success-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: #4ade80;
}

.form-success-text {
    font-family: 'Lora', Georgia, serif;
    font-size: 1rem;
    color: rgba(254, 243, 199, 0.8);
    line-height: 1.6;
}

/* ─────────────────────────────────────────────
   Footer
   ───────────────────────────────────────────── */
.footer {
    background: #052e16;
    border-top: 1px solid rgba(254, 243, 199, 0.08);
    padding: 4rem 0 2rem;
}

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

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

.footer-brand {}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: 1rem;
}

.footer-logo-char {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fef3c7;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(254, 243, 199, 0.4);
    border-radius: 4px;
}

.footer-logo-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1rem;
    font-weight: 500;
    color: #fef3c7;
    letter-spacing: 0.02em;
}

.footer-tagline {
    font-size: 0.9375rem;
    color: rgba(254, 243, 199, 0.5);
    line-height: 1.7;
    max-width: 280px;
}

.footer-nav-label,
.footer-contact .footer-nav-label {
    display: block;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(254, 243, 199, 0.4);
    margin-bottom: 1rem;
}

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

.footer-links a {
    font-family: 'Lora', Georgia, serif;
    font-size: 0.9375rem;
    color: rgba(254, 243, 199, 0.65);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fef3c7;
}

.footer-address {
    font-style: normal;
    font-family: 'Lora', Georgia, serif;
    font-size: 0.9375rem;
    color: rgba(254, 243, 199, 0.65);
    line-height: 1.8;
}

.footer-phone {
    color: #fef3c7;
    transition: opacity 0.3s ease;
}

.footer-phone:hover {
    opacity: 0.7;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(254, 243, 199, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.footer-copy,
.footer-note {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.75rem;
    color: rgba(254, 243, 199, 0.35);
}

@media (max-width: 500px) {
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ─────────────────────────────────────────────
   Scroll Reveal (progressive enhancement)
   ───────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        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; }
}

/* Reduced motion — keep everything visible */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
    }
    html {
        scroll-behavior: auto;
    }
}
