/* ========================================
   BURGIN DEPOT — Styles
   Classic & Elegant | Charcoal + Coral
   ======================================== */

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

:root {
    --charcoal: #2C2C2C;
    --charcoal-deep: #1A1A1A;
    --charcoal-mid: #3A3A3A;
    --charcoal-light: #4A4A4A;
    --coral: #E8734A;
    --coral-light: #F09070;
    --coral-dark: #D4603A;
    --cream: #F5F0EB;
    --cream-warm: #EDE6DD;
    --cream-light: #FAF7F4;
    --text-dark: #1A1A1A;
    --text-mid: #4A4A4A;
    --text-light: #7A7A7A;
    --white: #FFFFFF;
    
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* ---------- Typography ---------- */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
}

.text-accent {
    color: var(--coral);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn--primary {
    background: var(--coral);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 115, 74, 0.3);
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(245, 240, 235, 0.4);
}

.btn--ghost:hover {
    border-color: var(--white);
    background: rgba(245, 240, 235, 0.1);
}

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

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-sm) 0;
    transition: all var(--transition);
}

.nav.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: var(--space-xs) 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.nav__logo-mark {
    width: 36px;
    height: 36px;
    background: var(--coral);
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
}

.nav__logo-text {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.02em;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    list-style: none;
}

.nav__link {
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(245, 240, 235, 0.8);
    transition: color var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--coral);
    transition: width var(--transition);
}

.nav__link:hover {
    color: var(--white);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    background: var(--coral);
    color: var(--white) !important;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-sm);
    font-weight: 500;
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background: var(--coral-dark);
}

/* Mobile Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav__toggle-line {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

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

.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: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.98);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.mobile-menu__link {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--cream);
    transition: color var(--transition);
}

.mobile-menu__link:hover {
    color: var(--coral);
}

.mobile-menu__link--cta {
    margin-top: var(--space-sm);
    background: var(--coral);
    color: var(--white);
    padding: 0.75rem 2.5rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 1rem;
}

/* ---------- Hero ---------- */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--charcoal-deep);
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/1551346/pexels-photo-1551346.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center center / cover no-repeat;
    opacity: 0.35;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 26, 0.92) 0%,
        rgba(44, 44, 44, 0.85) 50%,
        rgba(26, 26, 26, 0.75) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    min-height: 100vh;
    padding-top: 5rem;
    padding-bottom: var(--space-xl);
}

.hero__left {
    padding-right: var(--space-lg);
}

.hero__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: var(--space-md);
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--cream);
    margin-bottom: var(--space-md);
}

.hero__headline-accent {
    font-style: italic;
    color: var(--coral);
}

.hero__subhead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(245, 240, 235, 0.7);
    margin-bottom: var(--space-lg);
    max-width: 480px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.hero__right {
    position: relative;
}

.hero__image-stack {
    position: relative;
    height: 680px;
}

.hero__image {
    position: absolute;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.hero__image--main {
    top: 0;
    right: 0;
    width: 520px;
    height: 680px;
}

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

.hero__image--accent {
    bottom: 80px;
    left: -60px;
    width: 320px;
    height: 240px;
    border: 4px solid var(--charcoal-deep);
}

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

.hero__stat {
    position: absolute;
    bottom: 0;
    left: 40px;
    background: var(--coral);
    color: var(--white);
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    box-shadow: 0 12px 40px rgba(232, 115, 74, 0.4);
}

.hero__stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.hero__stat-label {
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.9;
    line-height: 1.4;
}

.hero__scroll {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(245, 240, 235, 0.5);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 2;
}

.hero__scroll svg {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(4px); }
    60% { transform: translateY(2px); }
}

/* ---------- About ---------- */
.about {
    padding: var(--space-3xl) 0;
    background: var(--cream);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about__image-wrap {
    position: relative;
}

.about__image-wrap img {
    width: 100%;
    height: 720px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.about__image-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: var(--coral);
    border-radius: var(--radius-md);
    z-index: -1;
}

.about__content {
    padding: var(--space-lg) 0;
}

.about__text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: var(--space-md);
}

.about__features {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: all var(--transition);
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.feature-card__icon {
    flex-shrink: 0;
    color: var(--coral);
    margin-top: 2px;
}

.feature-card__title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.feature-card__text {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ---------- Menu ---------- */
.menu {
    padding: var(--space-3xl) 0;
    background: var(--charcoal-deep);
}

.menu__header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.menu__header .section-title {
    color: var(--cream);
}

.menu__intro {
    font-size: 1.05rem;
    color: rgba(245, 240, 235, 0.6);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.menu__categories {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.menu__cat-btn {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.625rem 1.5rem;
    border: 1.5px solid rgba(245, 240, 235, 0.2);
    background: transparent;
    color: rgba(245, 240, 235, 0.7);
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition);
}

.menu__cat-btn:hover {
    border-color: var(--coral);
    color: var(--coral);
}

.menu__cat-btn--active {
    background: var(--coral);
    border-color: var(--coral);
    color: var(--white);
}

.menu__grid {
    max-width: 900px;
    margin: 0 auto;
}

.menu-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md) var(--space-xl);
}

.menu-item {
    padding: var(--space-md) 0;
    border-bottom: 1px solid rgba(245, 240, 235, 0.08);
}

.menu-item__name {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--cream);
    margin-bottom: 0.35rem;
}

.menu-item__desc {
    font-size: 0.9rem;
    color: rgba(245, 240, 235, 0.5);
    line-height: 1.6;
}

.menu__note {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(245, 240, 235, 0.4);
    margin-top: var(--space-xl);
    font-style: italic;
}

/* ---------- Gallery ---------- */
.gallery {
    padding: var(--space-3xl) 0;
    background: var(--cream);
}

.gallery__header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: var(--space-md);
}

.gallery__item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

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

.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,26,26,0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-md);
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery__item:hover .gallery__item-overlay {
    opacity: 1;
}

.gallery__item-overlay span {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--white);
}

.gallery__item--large {
    grid-column: span 5;
    grid-row: span 2;
}

.gallery__item--large img {
    height: 100%;
}

.gallery__item--tall {
    grid-column: span 3;
    grid-row: span 2;
}

.gallery__item:not(.gallery__item--large):not(.gallery__item--tall) {
    grid-column: span 4;
}

/* ---------- Quote ---------- */
.quote {
    padding: var(--space-3xl) 0;
    background: var(--charcoal-mid);
    position: relative;
    overflow: hidden;
}

.quote::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--coral);
    opacity: 0.05;
    border-radius: 50%;
}

.quote__inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.quote__mark {
    color: var(--coral);
    margin-bottom: var(--space-md);
    opacity: 0.6;
}

.quote__text {
    font-family: var(--font-serif);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: var(--cream);
    margin-bottom: var(--space-md);
}

.quote__attribution {
    font-size: 0.9rem;
    color: rgba(245, 240, 235, 0.5);
    font-weight: 500;
}

/* ---------- Visit ---------- */
.visit {
    padding: var(--space-3xl) 0;
    background: var(--cream-warm);
}

.visit__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

.visit__detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.visit__detail-icon {
    flex-shrink: 0;
    color: var(--coral);
    margin-top: 2px;
}

.visit__detail-label {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.visit__detail p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.visit__detail a {
    color: var(--coral);
    transition: color var(--transition);
}

.visit__detail a:hover {
    color: var(--coral-dark);
    text-decoration: underline;
}

.visit__hours {
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(0,0,0,0.08);
}

.visit__hours-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
}

.visit__hours-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.visit__hour-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: var(--text-mid);
    padding: 0.35rem 0;
}

.visit__hour-row span:first-child {
    font-weight: 500;
    color: var(--text-dark);
}

/* Contact Form */
.visit__form-wrap {
    padding: var(--space-lg) 0;
}

.visit__form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.visit__form-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.visit__form-sub {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-mid);
    margin-bottom: 0.35rem;
    letter-spacing: 0.03em;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--cream-light);
    border: 1.5px solid transparent;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    outline: none;
}

.form-input:focus {
    border-color: var(--coral);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(232, 115, 74, 0.1);
}

.form-input::placeholder {
    color: var(--text-light);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7A7A' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: var(--space-md);
    padding: var(--space-md);
    background: rgba(232, 115, 74, 0.08);
    border-radius: var(--radius-sm);
    color: var(--coral-dark);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-success svg {
    flex-shrink: 0;
    color: var(--coral);
}

/* ---------- Map Section ---------- */
.map-section {
    padding: var(--space-3xl) 0;
    background: var(--charcoal-deep);
}

.map-section__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.map-section__content {
    padding: var(--space-lg) 0;
}

.map-section__image {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.map-section__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--charcoal-deep);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-xl);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: var(--space-sm);
    text-decoration: none;
}

.footer__logo-mark {
    width: 40px;
    height: 40px;
    background: var(--coral);
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
}

.footer__logo-text {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--cream);
}

.footer__tagline {
    font-size: 0.85rem;
    color: rgba(245, 240, 235, 0.5);
    margin-bottom: var(--space-sm);
}

.footer__copy {
    font-size: 0.85rem;
    color: rgba(245, 240, 235, 0.5);
    line-height: 1.8;
}

.footer__heading {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: var(--space-md);
}

.footer__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: rgba(245, 240, 235, 0.5);
}

.footer__list a {
    color: rgba(245, 240, 235, 0.5);
    transition: color var(--transition);
}

.footer__list a:hover {
    color: var(--coral);
}

.footer__bottom {
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(245, 240, 235, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.footer__bottom p {
    font-size: 0.8rem;
    color: rgba(245, 240, 235, 0.35);
}

/* ---------- 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-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero__content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-xl);
    }

    .hero__left {
        padding-right: 0;
    }

    .hero__subhead {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__right {
        display: none;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .about__image-wrap img {
        height: 480px;
    }

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .gallery__item--large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery__item--tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .gallery__item:not(.gallery__item--large):not(.gallery__item--tall) {
        grid-column: span 1;
    }

    .gallery__item {
        height: 280px;
    }

    .visit__grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .map-section__inner {
        grid-template-columns: 1fr;
    }

    .map-section__image img {
        height: 300px;
    }

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
    }
}

@media (max-width: 768px) {
    .nav__menu {
        display: none;
    }

    .nav__toggle {
        display: flex;
    }

    .hero {
        min-height: 100svh;
    }

    .hero__content {
        padding-top: 4rem;
        padding-bottom: var(--space-lg);
    }

    .hero__headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .menu__grid {
        grid-template-columns: 1fr;
    }

    .gallery__grid {
        grid-template-columns: 1fr;
    }

    .gallery__item--large {
        grid-column: span 1;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .about__image-accent {
        display: none;
    }

    .menu__categories {
        gap: 0.5rem;
    }

    .menu__cat-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}
