/* ============================================
   Amazing Graze Fort Smith — Stylesheet
   Classic & Elegant · Emerald + Cream
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --color-emerald: #1a5c3a;
    --color-emerald-dark: #134a2e;
    --color-emerald-light: #237a4d;
    --color-cream: #faf6f0;
    --color-cream-dark: #f0e8d8;
    --color-gold: #c8a45e;
    --color-gold-light: #d4b76a;
    --color-text: #1a1a1a;
    --color-text-light: #4a4a4a;
    --color-text-muted: #6b6b6b;
    --color-white: #ffffff;
    --color-border: rgba(26, 92, 58, 0.12);
    
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Lato', 'Helvetica Neue', Arial, 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;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.1);
    --shadow-elegant: 0 25px 80px rgba(0, 0, 0, 0.12);
    
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background-color: var(--color-cream);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

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

/* --- Utility --- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* --- Section Shared --- */
.section {
    padding: var(--space-3xl) 0;
}

.section__eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
}

.section__eyebrow--light {
    color: var(--color-gold-light);
}

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

.section__title--light {
    color: var(--color-cream);
}

.section__title--accent {
    font-style: italic;
    color: var(--color-gold);
}

.section__title--light .section__title--accent {
    color: var(--color-gold-light);
}

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

.section__subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 0.9rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-emerald);
    color: var(--color-white);
    border: 2px solid var(--color-emerald);
}

.btn--primary:hover {
    background: var(--color-emerald-dark);
    border-color: var(--color-emerald-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--ghost {
    background: transparent;
    color: var(--color-cream);
    border: 2px solid rgba(250, 246, 240, 0.5);
}

.btn--ghost:hover {
    background: var(--color-cream);
    color: var(--color-emerald-dark);
    border-color: var(--color-cream);
    transform: translateY(-2px);
}

.btn--gold {
    background: var(--color-gold);
    color: var(--color-white);
    border: 2px solid var(--color-gold);
}

.btn--gold:hover {
    background: var(--color-gold-light);
    border-color: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--outline-light {
    background: transparent;
    color: var(--color-cream);
    border: 2px solid rgba(250, 246, 240, 0.4);
}

.btn--outline-light:hover {
    background: var(--color-cream);
    color: var(--color-emerald-dark);
    border-color: var(--color-cream);
    transform: translateY(-2px);
}

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

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

.nav.scrolled {
    background: rgba(250, 246, 240, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--space-sm) 0;
    box-shadow: 0 1px 0 var(--color-border);
}

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

.nav__brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-emerald-dark);
}

.nav__brand-icon {
    color: var(--color-gold);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--color-text-light);
    transition: color var(--transition);
    position: relative;
}

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

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

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

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

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

.nav__link--cta:hover {
    background: var(--color-emerald-dark);
    color: var(--color-white) !important;
}

/* Mobile Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-xs);
}

.nav__toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--color-emerald-dark);
    border-radius: 2px;
    transition: all var(--transition);
}

.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 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--color-emerald);
    position: relative;
    overflow: hidden;
    padding: var(--space-3xl) 0;
}

.hero__bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse at 20% 50%, rgba(200, 164, 94, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(250, 246, 240, 0.05) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(200, 164, 94, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__eyebrow {
    color: var(--color-gold-light) !important;
    margin-bottom: var(--space-md);
}

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

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

.hero__subheadline {
    font-size: 1.15rem;
    color: rgba(250, 246, 240, 0.75);
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: var(--space-lg);
}

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

/* Hero Visual */
.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero__hero-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-elegant);
    aspect-ratio: 520 / 640;
}

.hero__hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__hero-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.hero__hero-card-text {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--color-cream);
    font-style: italic;
}

/* Floating Cards */
.hero__float-card {
    position: absolute;
    background: var(--color-cream);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    z-index: 2;
}

.hero__float-card--1 {
    bottom: 10%;
    left: -10%;
    animation: float 6s ease-in-out infinite;
}

.hero__float-card--2 {
    top: 8%;
    right: -5%;
    animation: float 6s ease-in-out infinite 2s;
}

.hero__float-card--3 {
    bottom: 35%;
    left: -8%;
    animation: float 6s ease-in-out infinite 4s;
    flex-direction: row;
    align-items: center;
    gap: var(--space-sm);
}

.hero__float-card-number {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-emerald);
    line-height: 1;
}

.hero__float-card-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.hero__float-card--3 span:last-child {
    font-size: 0.8rem;
    color: var(--color-text-light);
    line-height: 1.5;
    font-weight: 500;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Scroll Indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(250, 246, 240, 0.5);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: scrollBounce 2s ease-in-out infinite;
}

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

/* --- About Section --- */
.about {
    background: var(--color-cream);
}

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

.about__images {
    position: relative;
}

.about__image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about__image-secondary {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-elegant);
    border: 4px solid var(--color-cream);
}

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

.about__image-accent {
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    width: 120px;
    height: 120px;
    background: var(--color-emerald);
    border-radius: var(--radius-md);
    z-index: -1;
    opacity: 0.1;
}

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

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

.about__highlights {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.highlight {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.highlight__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--color-emerald);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-cream);
}

.highlight__text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text);
}

/* --- Offerings Section --- */
.offerings {
    background: var(--color-white);
}

.offerings__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.offering-card {
    background: var(--color-cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}

.offering-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-elegant);
}

.offering-card__image {
    overflow: hidden;
    aspect-ratio: 480 / 360;
}

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

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

.offering-card__body {
    padding: var(--space-lg);
}

.offering-card__category {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-xs);
}

.offering-card__title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-emerald-dark);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.offering-card__description {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.8;
}

/* --- Gallery Section --- */
.gallery {
    background: var(--color-cream);
}

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

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

.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--large {
    grid-column: 1 / 8;
    grid-row: 1 / 2;
}

.gallery__item--wide {
    grid-column: 5 / 13;
    grid-row: 2 / 3;
}

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

/* --- Visit Section --- */
.visit {
    background: var(--color-emerald);
    padding: var(--space-2xl) 0;
}

.visit__card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-2xl);
    align-items: stretch;
    background: var(--color-emerald-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.visit__content {
    padding: var(--space-2xl) var(--space-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.visit__text {
    font-size: 1.05rem;
    color: rgba(250, 246, 240, 0.75);
    line-height: 1.9;
    margin-bottom: var(--space-lg);
}

.visit__details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.visit__detail {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.visit__detail-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: rgba(250, 246, 240, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-light);
}

.visit__detail-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold-light);
    margin-bottom: 0.2rem;
}

.visit__detail-value {
    font-size: 0.95rem;
    color: var(--color-cream);
    line-height: 1.6;
}

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

.visit__detail-value a:hover {
    color: var(--color-gold-light);
}

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

.visit__image {
    overflow: hidden;
    min-height: 400px;
}

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

/* --- Contact Section --- */
.contact {
    background: var(--color-white);
}

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

.contact__text {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.9;
    margin-bottom: var(--space-lg);
}

.contact__methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact__method {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-text);
    transition: color var(--transition);
}

.contact__method:hover {
    color: var(--color-emerald);
}

.contact__method-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--color-cream);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-emerald);
    transition: all var(--transition);
}

.contact__method:hover .contact__method-icon {
    background: var(--color-emerald);
    color: var(--color-cream);
}

/* Contact Form */
.contact__form-wrapper {
    background: var(--color-cream);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
}

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

.form__label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.form__input,
.form__select,
.form__textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--color-text);
    background: var(--color-white);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    outline: none;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    border-color: var(--color-emerald);
    box-shadow: 0 0 0 3px rgba(26, 92, 58, 0.1);
}

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

.form__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='%236b6b6b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* Success State */
.contact__success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-xl);
    gap: var(--space-md);
}

.contact__success.active {
    display: flex;
}

.contact__success svg {
    color: var(--color-emerald);
}

.contact__success h3 {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--color-emerald-dark);
}

.contact__success p {
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* --- Footer --- */
.footer {
    background: var(--color-emerald-dark);
    color: var(--color-cream);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(250, 246, 240, 0.1);
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-cream);
    margin-bottom: var(--space-sm);
}

.footer__logo-icon {
    color: var(--color-gold-light);
}

.footer__tagline {
    font-size: 0.95rem;
    color: rgba(250, 246, 240, 0.6);
    line-height: 1.7;
    max-width: 320px;
}

.footer__links {
    display: flex;
    gap: var(--space-xl);
}

.footer__link-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer__link-title {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold-light);
    margin-bottom: 0.4rem;
}

.footer__link-group a,
.footer__link-group span {
    font-size: 0.9rem;
    color: rgba(250, 246, 240, 0.65);
    transition: color var(--transition);
    line-height: 1.8;
}

.footer__link-group a:hover {
    color: var(--color-cream);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    font-size: 0.8rem;
    color: rgba(250, 246, 240, 0.4);
}

/* --- Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.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) {
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero__subheadline {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero__actions {
        justify-content: center;
    }
    
    .hero__visual {
        max-width: 480px;
        margin: 0 auto;
    }
    
    .hero__float-card--1 {
        left: 0;
    }
    
    .hero__float-card--2 {
        right: 0;
    }
    
    .hero__float-card--3 {
        left: 0;
    }
    
    .about__grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .about__images {
        max-width: 560px;
        margin: 0 auto;
    }
    
    .offerings__grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .gallery__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .gallery__item--large {
        grid-column: 1 / 3;
        grid-row: auto;
    }
    
    .gallery__item--wide {
        grid-column: 1 / 3;
        grid-row: auto;
    }
    
    .gallery__item:not(.gallery__item--large):not(.gallery__item--wide) {
        grid-column: span 1;
    }
    
    .visit__card {
        grid-template-columns: 1fr;
    }
    
    .visit__image {
        min-height: 350px;
    }
    
    .contact__grid {
        grid-template-columns: 1fr;
    }
    
    .footer__top {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

@media (max-width: 768px) {
    .section {
        padding: var(--space-2xl) 0;
    }
    
    .nav__links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-cream);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-md);
        box-shadow: var(--shadow-elegant);
        transition: right var(--transition);
        z-index: 999;
    }
    
    .nav__links.open {
        right: 0;
    }
    
    .nav__toggle {
        display: flex;
        z-index: 1001;
    }
    
    .hero {
        padding: var(--space-2xl) 0;
        min-height: auto;
    }
    
    .hero__float-card {
        display: none;
    }
    
    .hero__hero-card {
        aspect-ratio: 4 / 5;
    }
    
    .about__image-secondary {
        right: 0;
        bottom: -1.5rem;
    }
    
    .gallery__grid {
        grid-template-columns: 1fr;
    }
    
    .gallery__item--large,
    .gallery__item--wide,
    .gallery__item:not(.gallery__item--large):not(.gallery__item--wide) {
        grid-column: 1 / -1;
    }
    
    .gallery__grid {
        grid-template-rows: auto;
    }
    
    .gallery__item {
        aspect-ratio: 16 / 10;
    }
    
    .visit__content {
        padding: var(--space-lg);
    }
    
    .visit__actions {
        flex-direction: column;
    }
    
    .visit__actions .btn {
        width: 100%;
    }
    
    .contact__form-wrapper {
        padding: var(--space-md);
    }
    
    .footer__links {
        flex-direction: column;
        gap: var(--space-lg);
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: var(--space-xs);
        text-align: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }
    
    .hero__headline {
        font-size: 2.2rem;
    }
    
    .hero__actions {
        flex-direction: column;
    }
    
    .hero__actions .btn {
        width: 100%;
    }
    
    .about__image-secondary {
        width: 65%;
    }
}

/* Mobile overlay */
.nav__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

.nav__overlay.active {
    display: block;
}
