/* ========================================
   The Oaks Tavern — Custom Styles
   ======================================== */

/* --- CSS Custom Properties --- */
:root {
    --color-primary: #1a3c2a;
    --color-primary-light: #2a5c3f;
    --color-primary-dark: #0f2419;
    --color-accent: #c8956c;
    --color-accent-light: #e8c4a0;
    --color-cream: #f5f0e8;
    --color-cream-dark: #ebe5d9;
    --color-white: #ffffff;
    --color-text: #2c2c2c;
    --color-text-light: #5a5a5a;
    --color-text-muted: #8a8a8a;
    --color-border: #e0d8cc;
    --color-success: #2d8a4e;
    
    --font-heading: 'Lora', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --shadow-sm: 0 1px 3px rgba(26, 60, 42, 0.06), 0 1px 2px rgba(26, 60, 42, 0.04);
    --shadow-md: 0 4px 16px rgba(26, 60, 42, 0.08), 0 2px 6px rgba(26, 60, 42, 0.04);
    --shadow-lg: 0 12px 40px rgba(26, 60, 42, 0.12), 0 4px 12px rgba(26, 60, 42, 0.06);
    --shadow-xl: 0 20px 60px rgba(26, 60, 42, 0.15), 0 8px 20px rgba(26, 60, 42, 0.08);
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--color-text);
    background-color: var(--color-cream);
    -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;
    transition: color var(--transition);
}

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

/* --- Skip Link --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-weight: 600;
}

.skip-link:focus {
    top: 16px;
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0 48px;
    }
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-primary);
}

/* --- Section Tag --- */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-primary);
    background: rgba(26, 60, 42, 0.08);
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
}

/* --- Section Header --- */
.section-header {
    max-width: 640px;
    margin: 0 auto 48px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

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

/* --- Section --- */
.section {
    padding: 80px 0;
}

@media (min-width: 768px) {
    .section {
        padding: 100px 0;
    }
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 100px;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

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

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

.btn--lg {
    padding: 16px 32px;
    font-size: 16px;
}

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

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: all var(--transition);
}

.header.scrolled {
    background: rgba(245, 240, 232, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-white);
    transition: color var(--transition);
}

.header.scrolled .logo {
    color: var(--color-primary);
}

.logo-icon {
    color: var(--color-accent-light);
    transition: color var(--transition);
}

.header.scrolled .logo-icon {
    color: var(--color-primary);
}

/* --- Nav --- */
.nav-menu {
    display: none;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: color var(--transition);
}

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

.header.scrolled .nav-menu a {
    color: var(--color-text-light);
}

.header.scrolled .nav-menu a:hover {
    color: var(--color-primary);
}

.nav-cta {
    background: var(--color-accent);
    color: var(--color-white) !important;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 600 !important;
    transition: all var(--transition) !important;
}

.nav-cta:hover {
    background: var(--color-accent-light) !important;
    color: var(--color-primary) !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    color: var(--color-white);
    transition: all var(--transition);
}

.header.scrolled .nav-toggle {
    color: var(--color-primary);
}

.nav-toggle svg {
    transition: transform var(--transition);
}

.nav-toggle[aria-expanded="true"] svg {
    transform: rotate(90deg);
}

/* Mobile menu */
@media (max-width: 767px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-cream);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-lg);
        border-radius: 0 0 var(--radius-lg) var(--radius-lg);
        transform: translateY(-8px);
        opacity: 0;
        pointer-events: none;
        transition: all var(--transition);
    }
    
    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-menu a {
        color: var(--color-text) !important;
        font-size: 16px;
    }
    
    .nav-menu a:hover {
        color: var(--color-primary) !important;
    }
    
    .nav-cta {
        text-align: center;
        display: block;
    }
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }
    
    .nav-menu {
        display: align-items;
    }
}

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15, 36, 25, 0.7) 0%,
        rgba(26, 60, 42, 0.6) 50%,
        rgba(15, 36, 25, 0.8) 100%
    );
    z-index: -1;
}

.hero-content {
    max-width: 680px;
    padding: 40px 48px;
    background: rgba(245, 240, 232, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--color-accent-light);
    margin-bottom: 24px;
}

.hero-badge svg {
    opacity: 0.7;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-actions .btn-outline {
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-actions .btn-outline:hover {
    background: var(--color-cream);
    color: var(--color-primary);
    border-color: var(--color-cream);
}

/* Floating Stat Cards */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 0 24px 24px;
    pointer-events: none;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    background: var(--color-cream);
    padding: 16px 12px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    pointer-events: all;
    animation: floatIn 0.6s ease-out both;
}

.stat-card--1 { animation-delay: 0.1s; }
.stat-card--2 { animation-delay: 0.2s; }
.stat-card--3 { animation-delay: 0.3s; }
.stat-card--4 { animation-delay: 0.4s; }

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-card-icon {
    color: var(--color-accent);
    opacity: 0.6;
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 100px 0 120px;
    }
    
    .hero-content {
        padding: 28px 24px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 16px;
        gap: 10px;
    }
    
    .stat-card {
        padding: 12px 8px;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
        padding: 0 40px 24px;
    }
}

@media (min-width: 1200px) {
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
        padding: 0 48px 32px;
        max-width: 1104px;
        margin: 0 auto;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
    }
}

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

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.about-images {
    position: relative;
}

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

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

.about-img-secondary {
    position: absolute;
    bottom: -32px;
    right: -16px;
    width: 55%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--color-white);
}

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

.about-accent {
    position: absolute;
    top: -20px;
    right: 20%;
    color: var(--color-accent);
    opacity: 0.3;
    animation: spin 20s linear infinite;
}

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

.about-content {
    padding: 16px 0;
}

.about-content h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: 20px;
}

.about-content > p {
    color: var(--color-text-light);
    margin-bottom: 16px;
    line-height: 1.75;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(26, 60, 42, 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.about-feature strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-primary);
    margin-bottom: 2px;
}

.about-feature span {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
    
    .about-img-main img {
        height: 500px;
    }
    
    .about-img-secondary img {
        height: 260px;
    }
}

/* --- Menu Section --- */
.menu {
    background: var(--color-cream);
}

.menu-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 40px;
}

.menu-cat {
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 100px;
    color: var(--color-text-light);
    background: var(--color-white);
    border: 2px solid transparent;
    transition: all var(--transition);
}

.menu-cat:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.menu-cat.active {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.menu-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.menu-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.menu-card-img {
    overflow: hidden;
    height: 180px;
}

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

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

.menu-card-body {
    padding: 20px;
}

.menu-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}

.menu-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--color-primary);
}

.menu-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-accent);
    background: rgba(200, 149, 108, 0.15);
    padding: 4px 10px;
    border-radius: 100px;
    white-space: nowrap;
}

.menu-card p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.menu-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 32px;
    font-style: italic;
}

@media (max-width: 639px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --- Drinks Section --- */
.drinks {
    background: var(--color-primary);
    color: var(--color-white);
    overflow: hidden;
}

.drinks .section-tag {
    background: rgba(255, 255, 255, 0.12);
    color: var(--color-accent-light);
}

.drinks .section-tag::before {
    background: var(--color-accent);
}

.drinks .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

.drinks .btn-primary {
    background: var(--color-accent);
    color: var(--color-primary);
}

.drinks .btn-primary:hover {
    background: var(--color-accent-light);
}

.drinks-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.drinks-content h2 {
    color: var(--color-white);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: 16px;
}

.drinks-content > p.section-desc {
    margin-bottom: 32px;
}

.drink-highlights {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.drink-highlight {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition);
}

.drink-highlight:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(4px);
}

.drink-highlight-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.drink-highlight strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-white);
    margin-bottom: 4px;
}

.drink-highlight span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
}

.drinks-visual {
    position: relative;
}

.drinks-img-stack {
    position: relative;
}

.drinks-img-1 {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.drinks-img-2 {
    position: absolute;
    bottom: -24px;
    left: -24px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--color-primary);
}

.drinks-img-2 img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .drinks-layout {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
    
    .drinks-img-1 img {
        height: 500px;
    }
    
    .drinks-img-2 img {
        height: 220px;
    }
}

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

.gallery .section-header {
    margin-bottom: 48px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.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 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, 60, 42, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity var(--transition);
}

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

.gallery-item-overlay span {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
}

.gallery-item--large {
    grid-row: span 2;
}

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

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

@media (max-width: 639px) {
    .gallery-item--large {
        grid-row: span 1;
    }
    
    .gallery-item--large img,
    .gallery-item img {
        min-height: 200px;
        height: 200px;
    }
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 200px);
    }
    
    .gallery-item--large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .gallery-item--large img {
        min-height: auto;
        height: 100%;
    }
    
    .gallery-item--wide {
        grid-column: span 2;
    }
    
    .gallery-item img {
        height: 100%;
    }
}

/* --- Visit Section --- */
.visit {
    background: var(--color-cream);
}

.visit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

.visit-info h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: 12px;
}

.visit-info > p.section-desc {
    margin-bottom: 32px;
}

.visit-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.visit-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.visit-detail-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: var(--color-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-light);
}

.visit-detail strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.visit-detail span {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.visit-detail a {
    color: var(--color-primary);
    font-weight: 500;
    transition: color var(--transition);
}

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

.visit-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 350px;
}

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

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

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

.contact-content h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: 12px;
}

.contact-content > p.section-desc {
    margin-bottom: 32px;
}

.contact-form {
    background: var(--color-cream);
    padding: 32px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 15px;
    padding: 12px 16px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-white);
    color: var(--color-text);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(26, 60, 42, 0.1);
}

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

.form-group--full {
    margin-bottom: 24px;
}

.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 48px 32px;
    background: rgba(45, 138, 78, 0.06);
    border-radius: var(--radius-xl);
    border: 2px solid rgba(45, 138, 78, 0.2);
}

.success-icon {
    width: 64px;
    height: 64px;
    background: var(--color-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    margin-bottom: 20px;
}

.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--color-primary);
}

.form-success p {
    color: var(--color-text-light);
    line-height: 1.7;
    max-width: 400px;
}

.form-success a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 48px;
    }
}

.contact-visual {
    position: relative;
}

.contact-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.contact-quote {
    position: absolute;
    bottom: -24px;
    left: -16px;
    right: -16px;
    background: var(--color-primary);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-quote blockquote {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-style: italic;
    color: var(--color-white);
    line-height: 1.6;
    margin-bottom: 8px;
}

.contact-quote cite {
    font-size: 0.85rem;
    color: var(--color-accent-light);
    font-style: normal;
}

@media (min-width: 768px) {
    .contact-visual img {
        height: 520px;
    }
}

/* --- Footer --- */
.footer {
    background: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 48px;
}

.footer-brand .logo {
    color: var(--color-white);
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-white);
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition), padding-left var(--transition);
}

.footer-links a:hover {
    color: var(--color-accent-light);
    padding-left: 4px;
}

.footer-hours p,
.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.footer-contact a:hover {
    color: var(--color-accent-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

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

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
