/* ========================================
   GOD'S GRAINS — Café & Bar
   Classic & Elegant · Teal + Slate Grey
   ======================================== */

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

:root {
    --teal-50:  #f0f7f7;
    --teal-100: #d4e8e8;
    --teal-200: #a8d1d1;
    --teal-300: #7bb8b8;
    --teal-400: #549e9e;
    --teal-500: #3a8282;
    --teal-600: #2a6666;
    --teal-700: #1f5050;
    --teal-800: #163d3d;
    --teal-900: #0f4c5c;
    --teal-950: #08252c;

    --slate-50:  #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --slate-950: #050d1a;

    --warm-100: #f5efe6;
    --warm-200: #e8d5bc;
    --warm-300: #d4a574;
    --warm-400: #c49a6c;
    --warm-500: #b07d4f;

    --cream: #faf8f5;
    --cream-dark: #f5f0e8;

    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Crimson Pro', 'Lora', Georgia, serif;
    --font-ui: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --nav-height: 72px;
    --section-padding: clamp(4rem, 10vw, 8rem);
    --container-max: 1200px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
}

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

body {
    font-family: var(--font-body);
    color: var(--slate-800);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
}

/* --- Typography --- */
.section-label {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--slate-900);
    margin-bottom: 1.5rem;
}

.section-title em {
    font-style: italic;
    color: var(--teal-700);
}

.section-header-center {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3.5rem;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--teal-800);
    color: #f5f0e8;
    border: 1.5px solid var(--teal-800);
}

.btn-primary:hover {
    background: var(--teal-900);
    border-color: var(--teal-900);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(15, 76, 92, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--teal-800);
    border: 1.5px solid var(--teal-300);
}

.btn-secondary:hover {
    background: var(--teal-50);
    border-color: var(--teal-500);
    transform: translateY(-1px);
}

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

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    transition: all 0.4s ease;
}

.nav.scrolled {
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--slate-200);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--cream);
    transition: color 0.3s ease;
}

.nav.scrolled .nav-logo {
    color: var(--slate-800);
}

.nav-logo-icon {
    color: var(--warm-300);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu a {
    font-family: var(--font-ui);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(245, 240, 232, 0.85);
    transition: color 0.3s ease;
    position: relative;
}

.nav.scrolled .nav-menu a {
    color: var(--slate-600);
}

.nav-menu a:hover {
    color: var(--warm-300);
}

.nav.scrolled .nav-menu a:hover {
    color: var(--teal-700);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--warm-300);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    font-family: var(--font-ui) !important;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em;
    color: var(--cream) !important;
    background: var(--teal-800);
    padding: 0.5rem 1.1rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    background: var(--teal-700) !important;
    color: var(--cream) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav.scrolled .nav-cta {
    color: var(--cream) !important;
}

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

.nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--cream);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav.scrolled .nav-toggle-bar {
    background: var(--slate-700);
}

.nav-toggle.active .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--nav-height) + 2rem) 1.5rem 3rem;
    overflow: hidden;
    /* Explicit dark gradient background with light text */
    background: linear-gradient(
        135deg,
        var(--teal-950) 0%,
        #0a3d4a 25%,
        #1a5c6a 50%,
        var(--teal-800) 75%,
        var(--slate-900) 100%
    );
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(212, 165, 116, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(84, 158, 158, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5L55 30L30 55L5 30L30 5z' fill='none' stroke='%23ffffff' stroke-width='0.5'/%3E%3C/svg%3E");
    background-size: 60px 60px;
    pointer-events: none;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--warm-300);
    background: rgba(212, 165, 116, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.25);
    padding: 0.45rem 1rem;
    border-radius: 50px;
    margin-bottom: 2rem;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 500;
    line-height: 1.2;
    color: #f5f0e8;
    margin-bottom: 1.5rem;
}

.hero-headline em {
    font-style: italic;
    color: var(--warm-300);
}

.hero-sub {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    line-height: 1.8;
    color: rgba(245, 240, 232, 0.7);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

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

.hero-actions .btn-secondary {
    color: var(--cream);
    border-color: rgba(245, 240, 232, 0.35);
}

.hero-actions .btn-secondary:hover {
    background: rgba(245, 240, 232, 0.1);
    border-color: rgba(245, 240, 232, 0.6);
}

.hero-details {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-ui);
    font-size: 0.82rem;
    color: rgba(245, 240, 232, 0.55);
}

.hero-detail svg {
    color: var(--warm-300);
    opacity: 0.7;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(245, 240, 232, 0.35);
    animation: scrollBounce 2s ease-in-out infinite;
}

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

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

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.about-image-wrap {
    position: relative;
}

.about-image-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

.about-image-accent {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 120px;
    height: 120px;
    border: 2px solid var(--teal-200);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-content .section-title {
    margin-bottom: 1.25rem;
}

.about-content p {
    font-size: 1.05rem;
    color: var(--slate-600);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 2rem;
}

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

.value-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-50);
    border: 1px solid var(--teal-100);
    border-radius: var(--radius-md);
    color: var(--teal-700);
}

.value strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--slate-800);
    margin-bottom: 0.15rem;
}

.value span {
    font-size: 0.9rem;
    color: var(--slate-500);
    line-height: 1.5;
}

/* --- Menu --- */
.menu {
    padding: var(--section-padding) 0;
    background: var(--slate-50);
}

.menu-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.5rem;
}

.menu-header .section-title {
    margin-bottom: 1rem;
}

.menu-intro {
    font-size: 1.05rem;
    color: var(--slate-500);
    line-height: 1.8;
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.menu-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    color: var(--slate-500);
    background: transparent;
    border: 1.5px solid var(--slate-200);
    transition: all 0.3s ease;
}

.menu-tab:hover {
    color: var(--teal-700);
    border-color: var(--teal-200);
    background: var(--teal-50);
}

.menu-tab.active {
    color: var(--cream);
    background: var(--teal-800);
    border-color: var(--teal-800);
}

.menu-tab svg {
    flex-shrink: 0;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.menu-category {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--slate-100);
}

.menu-category-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--slate-800);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--slate-100);
}

.menu-category-title svg {
    color: var(--teal-600);
}

.menu-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--slate-100);
}

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

.menu-item-info {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
}

.menu-item-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--slate-800);
}

.menu-item-desc {
    font-size: 0.88rem;
    color: var(--slate-500);
    line-height: 1.6;
    grid-column: 1 / -1;
    margin-top: 0.25rem;
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 1rem;
}

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

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

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.6) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-overlay span {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--cream);
}

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

.gallery-item--tall img {
    height: 100%;
    min-height: 400px;
}

.gallery-item--wide {
    grid-column: span 6;
}

.gallery-item--wide img {
    height: 250px;
}

.gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) img {
    height: 220px;
}

/* --- Visit --- */
.visit {
    padding: var(--section-padding) 0;
    background: var(--slate-900);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}

.visit .section-label {
    color: var(--warm-300);
}

.visit .section-title {
    color: var(--cream);
    margin-bottom: 2.5rem;
}

.visit .section-title em {
    color: var(--warm-300);
}

.visit-details {
    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: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 165, 116, 0.1);
    border: 1px solid rgba(212, 165, 116, 0.2);
    border-radius: var(--radius-md);
    color: var(--warm-300);
}

.visit-detail strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 0.2rem;
}

.visit-detail p {
    font-size: 0.92rem;
    color: var(--slate-400);
    line-height: 1.7;
}

.visit-detail a {
    color: var(--warm-300);
    transition: color 0.3s ease;
}

.visit-detail a:hover {
    color: var(--warm-200);
}

.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--slate-700);
}

.map-placeholder {
    background: var(--slate-800);
    padding: clamp(2rem, 5vw, 4rem);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    min-height: 300px;
    justify-content: center;
}

.map-placeholder svg {
    color: var(--teal-400);
    opacity: 0.6;
}

.map-placeholder p {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--slate-300);
}

.map-link {
    margin-top: 0.5rem;
}

.map-link.btn-secondary {
    color: var(--cream);
    border-color: rgba(245, 240, 232, 0.25);
}

.map-link.btn-secondary:hover {
    background: rgba(245, 240, 232, 0.08);
    border-color: rgba(245, 240, 232, 0.45);
}

/* --- Contact --- */
.contact {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}

.contact-text .section-title {
    margin-bottom: 1rem;
}

.contact-text p {
    font-size: 1.05rem;
    color: var(--slate-500);
    line-height: 1.8;
}

.contact-form {
    background: var(--slate-50);
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-lg);
    padding: clamp(1.5rem, 3vw, 2.5rem);
}

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

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

.form-group label {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--slate-600);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--slate-800);
    background: var(--cream);
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-sm);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--slate-400);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal-400);
    box-shadow: 0 0 0 3px rgba(90, 158, 158, 0.12);
}

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

.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem;
    text-align: center;
    background: var(--teal-50);
    border: 1px solid var(--teal-100);
    border-radius: var(--radius-md);
    margin-top: 1rem;
}

.form-success svg {
    color: var(--teal-600);
}

.form-success p {
    font-size: 0.95rem;
    color: var(--teal-800);
}

/* --- Footer --- */
.footer {
    background: var(--slate-950);
    padding: clamp(3rem, 6vw, 5rem) 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--slate-800);
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 1rem;
}

.footer-brand .footer-logo-icon {
    color: var(--warm-300);
}

.footer-brand p {
    font-size: 0.92rem;
    color: var(--slate-400);
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-hours h4,
.footer-contact h4 {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--slate-500);
    margin-bottom: 1rem;
}

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

.footer-links a {
    font-size: 0.9rem;
    color: var(--slate-400);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--warm-300);
}

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

.footer-hours p {
    font-size: 0.88rem;
    color: var(--slate-400);
    line-height: 1.6;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--slate-400);
}

.footer-contact a {
    color: var(--slate-400);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--warm-300);
}

.footer-contact svg {
    flex-shrink: 0;
    opacity: 0.6;
}

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

.footer-bottom p {
    font-family: var(--font-ui);
    font-size: 0.78rem;
    color: var(--slate-600);
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--slate-900);
        flex-direction: column;
        justify-content: center;
        gap: 1.5rem;
        padding: 2rem;
        transition: right 0.4s ease;
        box-shadow: -8px 0 30px rgba(0,0,0,0.3);
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-menu a {
        color: rgba(245, 240, 232, 0.8) !important;
        font-size: 1rem;
    }

    .nav-menu a:hover {
        color: var(--warm-300) !important;
    }

    .nav-cta {
        background: var(--teal-700) !important;
        color: var(--cream) !important;
        text-align: center;
        width: 100%;
        justify-content: center;
    }

    .nav-toggle {
        display: flex;
    }

    .about-grid,
    .visit-grid,
    .contact-inner {
        grid-template-columns: 1fr;
    }

    .about-image-wrap {
        order: -1;
    }

    .about-image-wrap img {
        height: 350px;
    }

    .about-image-accent {
        display: none;
    }

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

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

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

    .gallery-item--tall img,
    .gallery-item--wide img,
    .gallery-item:not(.gallery-item--tall):not(.gallery-item--wide) img {
        height: 200px;
    }

    .gallery-item--wide {
        grid-column: span 2;
    }

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

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

@media (max-width: 600px) {
    .hero-headline {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }

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

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

    .hero-details {
        flex-direction: column;
        gap: 0.75rem;
    }

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

    .gallery-item--wide {
        grid-column: span 1;
    }

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

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

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
}
