/* ============================================
   Top Spot — Artisan Bakery & Grocers
   Burgundy + Blush · Vibrant Modern
   ============================================ */

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

:root {
    --burgundy: #7B1E30;
    --burgundy-dark: #5C1523;
    --burgundy-light: #9E2A40;
    --blush: #E8A090;
    --blush-light: #FAD4C0;
    --blush-pale: #FFF0EB;
    --cream: #FDF6F0;
    --cream-dark: #F5E6DA;
    --text-dark: #1A0A0E;
    --text-mid: #4A2030;
    --text-light: #7A5060;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(123, 30, 48, 0.08);
    --shadow-md: 0 8px 30px rgba(123, 30, 48, 0.12);
    --shadow-lg: 0 20px 60px rgba(123, 30, 48, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-body: 'Outfit', system-ui, sans-serif;
    --font-display: 'Playfair Display', 'Georgia', serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- SKIP LINK ---- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--burgundy);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 9999;
    font-weight: 600;
    transition: top var(--transition);
}
.skip-link:focus {
    top: 16px;
}

/* ---- DECORATIVE BLOBS ---- */
.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}
.blob--blush {
    width: 500px;
    height: 500px;
    background: var(--blush);
    top: -100px;
    right: -100px;
}
.blob--burgundy {
    width: 400px;
    height: 400px;
    background: var(--burgundy);
    bottom: 20%;
    left: -100px;
    opacity: 0.15;
}
.blob--cream {
    width: 300px;
    height: 300px;
    background: var(--blush-light);
    top: 50%;
    right: 10%;
    opacity: 0.2;
}

/* ---- HEADER ---- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 246, 240, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(123, 30, 48, 0.08);
    transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
    background: rgba(253, 246, 240, 0.95);
    box-shadow: var(--shadow-sm);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--burgundy);
    transition: transform var(--transition);
}
.logo:hover {
    transform: scale(1.03);
}
.logo--light .logo-text {
    color: var(--blush-light);
}
.logo-text {
    letter-spacing: -0.02em;
}

/* ---- NAV ---- */
.primary-nav ul {
    display: flex;
    align-items: center;
    gap: 8px;
}
.primary-nav a {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-mid);
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}
.primary-nav a:hover {
    color: var(--burgundy);
    background: rgba(123, 30, 48, 0.06);
}

/* ---- HAMBURGER ---- */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 1001;
}
.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--burgundy);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}
.hamburger {
    position: relative;
    margin: 0 auto;
}
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}
.hamburger::before {
    top: -7px;
}
.hamburger::after {
    top: 7px;
}
.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: var(--radius-xl);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}
.btn--primary {
    background: var(--burgundy);
    color: var(--white);
    border-color: var(--burgundy);
}
.btn--primary:hover {
    background: var(--burgundy-dark);
    border-color: var(--burgundy-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn--outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.6);
}
.btn--outline:hover {
    background: var(--white);
    color: var(--burgundy);
    border-color: var(--white);
    transform: translateY(-2px);
}
.btn--lg {
    padding: 18px 36px;
    font-size: 1.05rem;
}
.btn--sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}
.btn--full {
    width: 100%;
}

/* ---- SECTION COMMON ---- */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--burgundy);
    margin-bottom: 16px;
}
.section-tag::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--blush);
    border-radius: 2px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.text-accent {
    color: var(--burgundy);
    font-style: italic;
}
.section-sub {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}
.text-center {
    text-align: center;
}

/* ---- HERO ---- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 40%, var(--burgundy-light) 70%, var(--blush) 100%);
    padding: 120px 24px 80px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(232, 160, 144, 0.3) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 80%, rgba(123, 30, 48, 0.4) 0%, transparent 50%);
}
.geo {
    position: absolute;
    opacity: 0.12;
}
.geo--circle-1 {
    width: 600px;
    height: 600px;
    border: 3px solid var(--blush-light);
    border-radius: 50%;
    top: -150px;
    right: -100px;
    animation: geo-float 20s ease-in-out infinite;
}
.geo--circle-2 {
    width: 300px;
    height: 300px;
    background: var(--blush-light);
    border-radius: 50%;
    bottom: 10%;
    left: 5%;
    animation: geo-float 15s ease-in-out infinite reverse;
}
.geo--square-1 {
    width: 120px;
    height: 120px;
    background: var(--cream);
    top: 25%;
    left: 8%;
    transform: rotate(45deg);
    animation: geo-spin 25s linear infinite;
}
.geo--triangle {
    width: 0;
    height: 0;
    border-left: 80px solid transparent;
    border-right: 80px solid transparent;
    border-bottom: 140px solid var(--blush);
    top: 60%;
    right: 10%;
    animation: geo-float 18s ease-in-out infinite;
    opacity: 0.08;
}
.geo--ring {
    width: 200px;
    height: 200px;
    border: 4px solid var(--blush-light);
    border-radius: 50%;
    bottom: 20%;
    right: 25%;
    animation: geo-spin 30s linear infinite reverse;
    opacity: 0.06;
}
@keyframes geo-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}
@keyframes geo-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--blush-light);
    padding: 10px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 32px;
    letter-spacing: 0.04em;
}
.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--blush);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}
.text-accent {
    color: var(--blush-light);
    font-style: italic;
}
.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}
.stat {
    text-align: center;
}
.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}
.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}
.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    animation: scroll-bounce 2s ease-in-out infinite;
}
@keyframes scroll-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ---- ABOUT ---- */
.about {
    padding: 120px 0;
    position: relative;
    z-index: 1;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.about-images {
    position: relative;
    height: 600px;
}
.img-card {
    position: absolute;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.img-card--main {
    width: 70%;
    height: 80%;
    top: 0;
    left: 0;
}
.img-card--accent {
    width: 55%;
    height: 45%;
    bottom: 0;
    right: 0;
}
.img-card--offset {
    top: 30%;
    right: -10%;
    width: 50%;
    height: 40%;
    box-shadow: var(--shadow-md);
}
.img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.img-card:hover img {
    transform: scale(1.05);
}
.about-shape {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--burgundy);
    border-radius: var(--radius-md);
    bottom: 15%;
    left: -20px;
    transform: rotate(30deg);
    z-index: -1;
    opacity: 0.15;
}
.about-content {
    padding: 20px 0;
}
.about-content p {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 20px;
}
.about-features {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--blush-pale);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
}
.feature strong {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 2px;
}
.feature span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ---- SPECIALTIES ---- */
.specialties {
    padding: 100px 0 120px;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, var(--cream) 0%, var(--blush-pale) 50%, var(--cream) 100%);
}
.specialties .section-header {
    margin-bottom: 64px;
}
.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.card-geo {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
    opacity: 0.6;
}
.card-img {
    height: 240px;
    overflow: hidden;
}
.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.card:hover .card-img img {
    transform: scale(1.08);
}
.card-body {
    padding: 28px;
}
.card--burgundy { background: var(--burgundy); }
.card--burgundy .card-title { color: var(--white); }
.card--burgundy .card-body p { color: rgba(255,255,255,0.75); }
.card--blush { background: var(--blush); }
.card--blush .card-title { color: var(--burgundy-dark); }
.card--blush .card-body p { color: var(--text-mid); }
.card--cream { background: var(--cream-dark); }
.card--cream .card-title { color: var(--text-dark); }
.card--cream .card-body p { color: var(--text-light); }
.card--accent { background: var(--burgundy); }
.card--accent .card-title { color: var(--white); }
.card--accent .card-body p { color: rgba(255,255,255,0.75); }
.card-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.card-body p {
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ---- GALLERY ---- */
.gallery {
    padding: 100px 0 120px;
    position: relative;
    z-index: 1;
}
.gallery .section-header {
    margin-bottom: 56px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-item:hover img {
    transform: scale(1.06);
}
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(123, 30, 48, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay span {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
}
.gallery-item--wide {
    grid-column: span 7;
}
.gallery-item:not(.gallery-item--wide) {
    grid-column: span 5;
}
.gallery-item:nth-child(2) { grid-column: span 5; }
.gallery-item:nth-child(3) { grid-column: span 5; }
.gallery-item:nth-child(4) { grid-column: span 5; }
.gallery-item:nth-child(5) { grid-column: span 7; }

/* ---- VISIT ---- */
.visit {
    padding: 100px 0 120px;
    position: relative;
    z-index: 1;
    background: var(--blush-pale);
}
.visit-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.visit-desc {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 40px;
}
.visit-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.detail-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: var(--white);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--burgundy);
    box-shadow: var(--shadow-sm);
}
.detail strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    margin-bottom: 4px;
}
.detail span, .detail a {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
}
.detail a:hover {
    color: var(--burgundy);
    text-decoration: underline;
}
.visit-map {
    position: relative;
}
.map-placeholder {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}
.map-geo {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
}
.map-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--burgundy);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.map-ring {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 2px solid var(--blush);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: map-pulse 2s ease-in-out infinite;
}
@keyframes map-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.4); opacity: 0; }
}
.map-label {
    font-size: 0.95rem;
    color: var(--text-mid);
    margin-bottom: 20px;
}

/* ---- CTA / CONTACT ---- */
.cta {
    padding: 100px 0 120px;
    position: relative;
    z-index: 1;
}
.cta-card {
    position: relative;
    background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 60%, var(--burgundy-light) 100%);
    border-radius: var(--radius-xl);
    overflow: hidden;
    padding: 72px 64px;
}
.cta-geos {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.cta-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.08);
}
.cta-circle--1 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -100px;
}
.cta-circle--2 {
    width: 200px;
    height: 200px;
    bottom: -60px;
    left: -40px;
    border-color: rgba(255, 255, 255, 0.05);
}
.cta-square {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
    top: 40%;
    right: 15%;
    transform: rotate(45deg);
}
.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}
.cta-content .section-tag {
    color: var(--blush-light);
}
.cta-content .section-tag::before {
    background: var(--blush);
}
.cta-content .section-title {
    color: var(--white);
}
.cta-content > p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 40px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--blush-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 14px 18px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    transition: border-color var(--transition), background var(--transition);
    outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--blush);
    background: rgba(255, 255, 255, 0.12);
}
.form-group select {
    appearance: none;
    cursor: pointer;
    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(255,255,255,0.6)' 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 16px center;
    padding-right: 40px;
}
.form-group select option {
    background: var(--burgundy);
    color: var(--white);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}
.form-note a {
    color: var(--blush-light);
    text-decoration: underline;
}
.form-note a:hover {
    color: var(--white);
}
.form-success {
    text-align: center;
    padding: 40px 20px;
}
.form-success svg {
    margin: 0 auto 16px;
}
.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 8px;
}
.form-success p {
    color: rgba(255, 255, 255, 0.7);
}
.form-hidden {
    display: none;
}

/* ---- FOOTER ---- */
.site-footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 72px 0 0;
    position: relative;
    z-index: 1;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand p {
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}
.footer-col h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 20px;
}
.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-col a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-col a:hover {
    color: var(--blush-light);
}
.footer-col li {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    gap: 16px;
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 28px 0;
    font-size: 0.85rem;
}
.footer-bottom a {
    color: var(--blush-light);
    transition: color var(--transition);
}
.footer-bottom a:hover {
    color: var(--white);
}

/* ---- SCROLL ANIMATIONS ---- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
    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; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .about-grid {
        gap: 48px;
    }
    .about-images {
        height: 480px;
    }
    .cards-grid {
        gap: 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    .primary-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--cream);
        padding: 100px 32px 40px;
        box-shadow: var(--shadow-lg);
        transition: right var(--transition);
        z-index: 1000;
    }
    .primary-nav.open {
        right: 0;
    }
    .primary-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }
    .primary-nav a {
        padding: 14px 16px;
        font-size: 1.05rem;
    }
    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(26, 10, 14, 0.5);
        z-index: 999;
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition);
    }
    .nav-overlay.active {
        opacity: 1;
        pointer-events: all;
    }
    .hero {
        padding: 100px 20px 80px;
        min-height: 100svh;
    }
    .hero-headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    .hero-stats {
        gap: 20px;
    }
    .stat-divider {
        display: none;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-images {
        height: 400px;
        order: -1;
    }
    .img-card--main {
        width: 75%;
        height: 75%;
    }
    .img-card--accent {
        width: 55%;
        height: 45%;
    }
    .img-card--offset {
        right: 0;
    }
    .cards-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-item--wide,
    .gallery-item:not(.gallery-item--wide) {
        grid-column: span 1;
    }
    .gallery-item {
        height: 260px;
    }
    .visit-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .cta-card {
        padding: 48px 28px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .blob {
        opacity: 0.15;
    }
    .blob--blush {
        width: 300px;
        height: 300px;
    }
    .blob--burgundy {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .about-images {
        height: 320px;
    }
    .section-title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
    }
}
