/* ========================================
   Gran's Kitchen — Styles
   Bold Editorial · Emerald & Cream
======================================== */

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

:root {
    --emerald-950: #022c22;
    --emerald-900: #064e3b;
    --emerald-800: #065f46;
    --emerald-700: #047857;
    --emerald-600: #059669;
    --emerald-500: #10b981;
    --cream-50: #fefdf8;
    --cream-100: #fef9ef;
    --cream-200: #fdf3e0;
    --cream-300: #f5e6c8;
    --warm-500: #b45309;
    --warm-600: #92400e;
    --text-dark: #1a1a1a;
    --text-mid: #3d3d3d;
    --text-light: #6b6b6b;
    --text-inverse: #f5f0e8;
    
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    
    --shadow-sm: 0 1px 3px rgba(6, 78, 59, 0.08);
    --shadow-md: 0 4px 20px rgba(6, 78, 59, 0.12);
    --shadow-lg: 0 8px 40px rgba(6, 78, 59, 0.16);
    --shadow-xl: 0 16px 60px rgba(6, 78, 59, 0.2);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

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

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

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

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

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

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

/* ── Accent italic helper ── */
.accent-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--emerald-700);
}

/* ── Section eyebrow ── */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--emerald-700);
    margin-bottom: 16px;
}

.section-eyebrow::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1.5px;
    background: var(--emerald-600);
}

/* ── Section title ── */
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--emerald-950);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-mid);
    max-width: 540px;
    line-height: 1.7;
}

.section-header {
    margin-bottom: 64px;
}

/* ── Navigation ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(254, 253, 248, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(6, 78, 59, 0.08);
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--emerald-950);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    color: var(--emerald-700);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-mid);
    transition: color 0.2s ease;
    position: relative;
}

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

.nav-link:hover {
    color: var(--emerald-700);
}

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

.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 24px;
    background: var(--emerald-800);
    color: var(--cream-50);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-cta-btn:hover {
    background: var(--emerald-700);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--emerald-950);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 44, 34, 0.6);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.mobile-menu {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: var(--cream-50);
    padding: 100px 32px 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-overlay.active .mobile-menu {
    transform: translateX(0);
}

.mobile-link {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--emerald-950);
    padding: 12px 0;
    border-bottom: 1px solid rgba(6, 78, 59, 0.1);
    transition: color 0.2s ease;
}

.mobile-link:hover {
    color: var(--emerald-600);
}

.mobile-reserve-btn {
    margin-top: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    background: var(--emerald-800);
    color: var(--cream-50);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
}

/* ── Hero ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    background: var(--cream-50);
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse at 20% 50%, rgba(6, 78, 59, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(180, 83, 9, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(6, 78, 59, 0.08);
    border: 1px solid rgba(6, 78, 59, 0.15);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--emerald-700);
    margin-bottom: 28px;
    letter-spacing: 0.02em;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.08;
    color: var(--emerald-950);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subheadline {
    font-size: 1.15rem;
    line-height: 1.75;
    color: var(--text-mid);
    max-width: 480px;
    margin-bottom: 40px;
}

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

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--emerald-800);
    color: var(--cream-50);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

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

.btn-primary svg {
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: transparent;
    color: var(--emerald-800);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    border: 1.5px solid rgba(6, 78, 59, 0.3);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--emerald-600);
    background: rgba(6, 78, 59, 0.05);
}

/* ── Hero Cards ── */
.hero-cards {
    position: relative;
    height: 560px;
}

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

.hero-card-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 85%;
    height: 70%;
}

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

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(2, 44, 34, 0.85));
    color: var(--cream-50);
}

.card-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(254, 253, 248, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.card-caption {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--cream-200);
}

.hero-card-stat {
    position: absolute;
    background: var(--cream-50);
    padding: 20px 24px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.card-stat-1 {
    bottom: 5%;
    left: 0;
    width: 160px;
}

.card-stat-2 {
    top: 5%;
    left: 10%;
    width: 130px;
    align-items: center;
    text-align: center;
}

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

.stat-label {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-light);
    line-height: 1.4;
}

.hero-card-wide {
    position: absolute;
    bottom: 28%;
    right: -8%;
    width: 200px;
    background: var(--emerald-900);
    padding: 20px;
    box-shadow: var(--shadow-xl);
}

.wide-card-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.wide-card-label {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--emerald-400, #34d399);
    margin-bottom: 4px;
}

.wide-card-title {
    font-family: var(--font-serif);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--cream-50);
    line-height: 1.3;
}

.wide-card-icon {
    color: var(--emerald-500);
    flex-shrink: 0;
}

/* ── Section Divider ── */
.section-divider {
    background: var(--emerald-900);
    overflow: hidden;
}

.section-divider svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* ── Menu Section ── */
.menu-section {
    padding: 100px 0;
    background: var(--cream-50);
}

.menu-categories {
    display: flex;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.menu-cat-btn {
    padding: 10px 24px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-mid);
    border: 1.5px solid rgba(6, 78, 59, 0.15);
    border-radius: 50px;
    transition: all 0.2s ease;
}

.menu-cat-btn:hover {
    border-color: var(--emerald-600);
    color: var(--emerald-700);
}

.menu-cat-btn.active {
    background: var(--emerald-800);
    border-color: var(--emerald-800);
    color: var(--cream-50);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.menu-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--cream-100);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.menu-item:hover {
    background: var(--cream-50);
    border-color: rgba(6, 78, 59, 0.12);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.menu-item-image {
    flex-shrink: 0;
    width: 110px;
    height: 90px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.08);
}

.menu-item-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    padding: 2px 8px;
    background: var(--emerald-700);
    color: var(--cream-50);
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 50px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.menu-item-body {
    flex: 1;
    min-width: 0;
}

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

.menu-item-name {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--emerald-950);
    line-height: 1.2;
}

.menu-item-tag {
    flex-shrink: 0;
    padding: 3px 10px;
    background: rgba(6, 78, 59, 0.08);
    color: var(--emerald-700);
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 50px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.menu-item-desc {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ── About Section ── */
.about-section {
    padding: 100px 0;
    background: var(--emerald-900);
    color: var(--cream-50);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse at 0% 100%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 0%, rgba(180, 83, 9, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.about-section .section-eyebrow {
    color: var(--emerald-400, #34d399);
}

.about-section .section-eyebrow::before {
    background: var(--emerald-500);
}

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

.about-section .accent-italic {
    color: var(--emerald-400, #34d399);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-images {
    position: relative;
}

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

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

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -30px;
    width: 200px;
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 6px solid var(--emerald-900);
    box-shadow: var(--shadow-lg);
}

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

.about-experience-badge {
    position: absolute;
    top: -20px;
    right: 40px;
    background: var(--cream-50);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
    color: var(--emerald-950);
}

.about-experience-badge .exp-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.05em;
}

.about-experience-badge .exp-number-lg {
    display: block;
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 800;
    color: var(--emerald-800);
    line-height: 1;
}

.about-experience-badge .exp-sub {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 4px;
}

.about-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, var(--emerald-600), transparent);
    margin: 24px 0;
    border-radius: 2px;
}

.about-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(254, 253, 248, 0.75);
    margin-bottom: 20px;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.value-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.value-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-400, #34d399);
}

.value-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--cream-50);
    margin-bottom: 4px;
}

.value-desc {
    font-size: 0.9rem;
    color: rgba(254, 253, 248, 0.6);
    line-height: 1.6;
}

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

.gallery-section .section-header {
    text-align: center;
}

.gallery-section .section-subtitle {
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 16px;
}

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

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 50%, rgba(2, 44, 34, 0.7));
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay p {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-style: italic;
    color: var(--cream-50);
}

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

.gallery-item-tall {
    grid-column: 1 / 5;
    grid-row: 1 / 3;
}

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

/* ── Visit Section ── */
.visit-section {
    padding: 100px 0;
    background: var(--cream-50);
}

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

.visit-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, var(--emerald-600), transparent);
    margin: 24px 0;
    border-radius: 2px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--cream-100);
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: var(--cream-50);
    border-color: rgba(6, 78, 59, 0.15);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.contact-card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--emerald-800);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream-50);
}

.contact-card-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 2px;
}

.contact-card-text p {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.hours-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--emerald-900);
    border-radius: var(--radius-md);
    color: var(--cream-50);
}

.hours-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-400, #34d399);
}

.hours-title {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.9rem;
}

.hours-day {
    color: rgba(254, 253, 248, 0.7);
}

.hours-time {
    font-weight: 600;
    color: var(--cream-200);
}

/* ── Form ── */
.form-card {
    background: var(--cream-100);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid rgba(6, 78, 59, 0.08);
}

.form-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--emerald-950);
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

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

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

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-mid);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid rgba(6, 78, 59, 0.15);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--cream-50);
    transition: all 0.2s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--emerald-600);
    box-shadow: 0 0 0 3px rgba(6, 78, 59, 0.1);
}

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

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

.btn-submit {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--emerald-800);
    color: var(--cream-50);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.btn-submit:hover {
    background: var(--emerald-700);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-submit svg {
    transition: transform 0.3s ease;
}

.btn-submit:hover svg {
    transform: translateX(4px);
}

.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.show {
    display: block;
}

.success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: rgba(6, 78, 59, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-700);
}

.form-success h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--emerald-950);
    margin-bottom: 8px;
}

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

/* ── CTA Section ── */
.cta-section {
    padding: 100px 0;
    background: var(--emerald-900);
    position: relative;
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse at 30% 50%, rgba(16, 185, 129, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(180, 83, 9, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.cta-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--emerald-400, #34d399);
    margin-bottom: 20px;
}

.cta-headline {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--cream-50);
    margin-bottom: 20px;
}

.cta-headline .accent-italic {
    color: var(--emerald-400, #34d399);
}

.cta-body {
    font-size: 1.05rem;
    color: rgba(254, 253, 248, 0.65);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--cream-50);
    color: var(--emerald-950);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.btn-white:hover {
    background: var(--cream-200);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    color: var(--cream-50);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    border: 1.5px solid rgba(254, 253, 248, 0.3);
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    border-color: var(--cream-50);
    background: rgba(254, 253, 248, 0.1);
}

/* ── Footer ── */
.footer {
    background: var(--emerald-950);
    color: var(--cream-50);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(254, 253, 248, 0.1);
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--cream-50);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo-icon {
    color: var(--emerald-500);
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(254, 253, 248, 0.55);
    line-height: 1.7;
    max-width: 280px;
}

.footer-heading {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--cream-200);
    margin-bottom: 20px;
}

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

.footer-links a {
    font-size: 0.9rem;
    color: rgba(254, 253, 248, 0.55);
    transition: color 0.2s ease;
    line-height: 1.5;
}

.footer-links a:hover {
    color: var(--cream-50);
}

.footer-newsletter-text {
    font-size: 0.875rem;
    color: rgba(254, 253, 248, 0.55);
    line-height: 1.6;
    margin-bottom: 16px;
}

.newsletter-input-wrap {
    display: flex;
    background: rgba(254, 253, 248, 0.08);
    border: 1px solid rgba(254, 253, 248, 0.15);
    border-radius: 50px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.newsletter-input-wrap:focus-within {
    border-color: var(--emerald-500);
}

.newsletter-input-wrap input {
    flex: 1;
    padding: 12px 20px;
    background: transparent;
    border: none;
    outline: none;
    color: var(--cream-50);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    min-width: 0;
}

.newsletter-input-wrap input::placeholder {
    color: rgba(254, 253, 248, 0.35);
}

.newsletter-input-wrap button {
    padding: 12px 16px;
    color: var(--emerald-400, #34d399);
    transition: color 0.2s ease;
}

.newsletter-input-wrap button:hover {
    color: var(--cream-50);
}

.newsletter-success {
    display: none;
    margin-top: 12px;
    font-size: 0.875rem;
    color: var(--emerald-400, #34d399);
}

.newsletter-success.show {
    display: block;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.8rem;
    color: rgba(254, 253, 248, 0.35);
}

/* ── Scroll Reveal ── */
[data-reveal] {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

@media (prefers-reduced-motion: no-preference) {
    [data-reveal] {
        opacity: 0;
        transform: translateY(24px);
    }
    
    [data-reveal].revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-cards {
        height: 400px;
        max-width: 480px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-images {
        max-width: 480px;
    }
    
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 24px 60px;
        min-height: auto;
    }
    
    .hero-cards {
        height: 360px;
        margin: 0 auto;
        max-width: 400px;
    }
    
    .hero-headline {
        font-size: clamp(2.25rem, 8vw, 3.5rem);
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-primary, .btn-secondary {
        justify-content: center;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .gallery-item-tall {
        grid-column: 1 / -1;
        grid-row: auto;
        height: 280px;
    }
    
    .gallery-item:not(.gallery-item-tall):not(.gallery-item-wide) {
        height: 200px;
    }
    
    .gallery-item-wide {
        grid-column: 1 / -1;
        grid-row: auto;
        height: 220px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-card {
        padding: 28px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hours-row {
        flex-direction: column;
        gap: 2px;
    }
}

@media (max-width: 480px) {
    .hero-cards {
        height: 300px;
    }
    
    .hero-card-wide {
        right: -4%;
        width: 170px;
    }
    
    .about-img-secondary {
        width: 150px;
        height: 150px;
        right: -16px;
        bottom: -24px;
    }
    
    .about-experience-badge {
        top: -12px;
        right: 20px;
        padding: 14px 18px;
    }
    
    .about-experience-badge .exp-number-lg {
        font-size: 1.5rem;
    }
}
