/* ============================================
   GORDON COUNTY NUTRITION — BRAND STYLES
   Palette: Emerald Green + Cream + Gold
   ============================================ */

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

:root {
    --emerald-950: #042f23;
    --emerald-900: #064e3b;
    --emerald-800: #065f46;
    --emerald-700: #047857;
    --emerald-600: #059669;
    --emerald-500: #10b981;
    --cream-50: #faf9f6;
    --cream-100: #f5f0e8;
    --cream-200: #efe8d8;
    --cream-300: #e8dfc8;
    --gold-400: #d4a843;
    --gold-500: #c49a30;
    --gold-600: #b08820;
    --text-dark: #1a1a1a;
    --text-medium: #3a3a3a;
    --text-light: #6b6b6b;
    --text-on-dark: #f5f0e8;
    --text-on-dark-muted: #a8a29e;
    
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', system-ui, -apple-system, 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: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    
    --transition-fast: 0.2s ease;
    --transition-med: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

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

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

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

ul {
    list-style: none;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-sm);
    background: var(--emerald-900);
    color: var(--cream-50);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-size: 0.875rem;
}

.skip-link:focus {
    top: var(--space-sm);
}

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

/* --- GRAIN OVERLAY --- */
.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

/* --- NAVBAR --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 249, 246, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(6, 78, 59, 0.08);
    transition: var(--transition-fast);
}

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

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--emerald-900);
}

.logo-mark {
    width: 42px;
    height: 42px;
    background: var(--emerald-900);
    color: var(--gold-400);
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.logo-accent {
    color: var(--emerald-700);
    font-weight: 400;
    font-style: italic;
}

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

.nav-links {
    display: flex;
    gap: var(--space-lg);
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-medium);
    letter-spacing: 0.02em;
    position: relative;
    padding: 4px 0;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--emerald-700);
    transition: width var(--transition-fast);
}

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

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

.nav-cta {
    display: flex;
    align-items: center;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
}

.nav-toggle:hover {
    background: var(--cream-100);
}

.hamburger {
    position: relative;
    width: 20px;
    height: 14px;
    display: block;
}

.hamburger::before,
.hamburger::after,
.hamburger span {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: var(--emerald-900);
    transition: var(--transition-fast);
}

.hamburger::before { top: 0; }
.hamburger span { top: 6px; }
.hamburger::after { bottom: 0; }

.nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 6px;
}

.nav-toggle[aria-expanded="true"] .hamburger span {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    bottom: 6px;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.9375rem;
    letter-spacing: 0.02em;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn-primary {
    background: var(--emerald-900);
    color: var(--cream-50);
    border: 1.5px solid var(--emerald-900);
}

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

.btn-outline {
    background: transparent;
    color: var(--emerald-900);
    border: 1.5px solid var(--emerald-900);
}

.btn-outline:hover {
    background: var(--emerald-900);
    color: var(--cream-50);
    transform: translateY(-1px);
}

.btn-accent {
    background: var(--gold-400);
    color: var(--emerald-950);
    border: 1.5px solid var(--gold-400);
    font-weight: 600;
}

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

.btn-ghost {
    background: transparent;
    color: var(--emerald-950);
    border: 1.5px solid var(--emerald-900);
}

.btn-ghost:hover {
    background: var(--emerald-900);
    color: var(--cream-50);
}

.btn-small {
    padding: 10px 20px;
    font-size: 0.8125rem;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
}

/* --- SECTION COMMON --- */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--emerald-700);
    margin-bottom: var(--space-sm);
}

.section-eyebrow::before {
    content: '';
    width: 24px;
    height: 1.5px;
    background: var(--gold-400);
}

.section-heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--emerald-950);
    margin-bottom: var(--space-md);
}

.heading-accent {
    font-style: italic;
    font-weight: 400;
    color: var(--emerald-700);
}

/* --- HERO --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--cream-50);
    padding-top: 72px;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 70% 30%, rgba(6, 78, 59, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 80%, rgba(212, 168, 67, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

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

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

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
}

.eyebrow-line {
    width: 40px;
    height: 1.5px;
    background: var(--gold-400);
    flex-shrink: 0;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--emerald-950);
    margin-bottom: var(--space-md);
}

.headline-accent {
    font-style: italic;
    font-weight: 400;
    color: var(--emerald-700);
}

.hero-subhead {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: var(--space-lg);
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.hero-trust {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-medium);
}

.trust-icon {
    width: 20px;
    height: 20px;
    color: var(--emerald-700);
    flex-shrink: 0;
}

.hero-right {
    position: relative;
}

.hero-image-stack {
    position: relative;
    height: 600px;
}

.hero-img {
    position: absolute;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

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

.hero-img-main {
    width: 380px;
    height: 500px;
    top: 0;
    right: 0;
    z-index: 2;
}

.hero-img-secondary {
    width: 280px;
    height: 200px;
    bottom: 40px;
    left: 0;
    z-index: 3;
    border: 4px solid var(--cream-50);
}

.hero-badge {
    position: absolute;
    bottom: 0;
    right: 40px;
    z-index: 4;
    background: var(--emerald-900);
    color: var(--cream-50);
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    animation: float 2.5s ease-in-out infinite;
}

.hero-scroll-indicator svg {
    width: 20px;
    height: 20px;
}

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

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

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

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

.about-image-wrap img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.about-image-accent {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 120px;
    height: 120px;
    border: 2px solid var(--gold-400);
    border-radius: var(--radius-md);
    z-index: -1;
}

.about-content {
    padding-left: var(--space-lg);
}

.about-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: var(--space-md);
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.value-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.value-number {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold-400);
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}

.value-item h4 {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--emerald-900);
    margin-bottom: 4px;
}

.value-item p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* --- PRODUCTS --- */
.products {
    padding: var(--space-3xl) 0;
    background: var(--cream-100);
}

.products-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto var(--space-xl);
}

.products-header .section-eyebrow {
    justify-content: center;
}

.products-header .section-eyebrow::before {
    display: none;
}

.products-intro {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.product-card {
    background: var(--cream-50);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-med);
}

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

.product-img {
    height: 240px;
    overflow: hidden;
}

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

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

.product-info {
    padding: var(--space-md);
}

.product-category {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-600);
    margin-bottom: 8px;
}

.product-info h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--emerald-950);
    margin-bottom: 8px;
}

.product-info p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* --- SPECIALS --- */
.specials {
    padding: var(--space-3xl) 0;
    background: var(--emerald-950);
    color: var(--cream-50);
}

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

.specials-content .section-eyebrow {
    color: var(--gold-400);
}

.specials-content .section-heading {
    color: var(--cream-50);
}

.specials-content .heading-accent {
    color: var(--gold-400);
}

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

.special-feature {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.special-feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(212, 168, 67, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold-400);
}

.special-feature-icon svg {
    width: 24px;
    height: 24px;
}

.special-feature h4 {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--cream-50);
    margin-bottom: 4px;
}

.special-feature p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-on-dark-muted);
}

.specials-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 650px;
}

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

/* --- TESTIMONIALS --- */
.testimonials {
    padding: var(--space-3xl) 0;
    background: var(--cream-50);
}

.testimonials-header {
    text-align: center;
    max-width: 480px;
    margin: 0 auto var(--space-xl);
}

.testimonials-header .section-eyebrow {
    justify-content: center;
}

.testimonials-header .section-eyebrow::before {
    display: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.testimonial-card {
    background: var(--cream-100);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    position: relative;
    transition: all var(--transition-med);
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.testimonial-quote-mark {
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 1;
    color: var(--gold-400);
    position: absolute;
    top: 16px;
    left: 24px;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: var(--space-md);
    margin-top: var(--space-lg);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--emerald-900);
}

.author-location {
    font-size: 0.8125rem;
    color: var(--text-light);
}

/* --- LOCATION --- */
.location {
    padding: var(--space-3xl) 0;
    background: var(--cream-100);
}

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

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

.location-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin: var(--space-lg) 0 var(--space-xl);
}

.location-detail {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.detail-icon {
    width: 48px;
    height: 48px;
    background: var(--emerald-900);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--gold-400);
}

.detail-icon svg {
    width: 22px;
    height: 22px;
}

.location-detail h4 {
    font-family: var(--font-serif);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--emerald-950);
    margin-bottom: 4px;
}

.location-detail p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-medium);
}

.location-detail a {
    color: var(--emerald-700);
    transition: color var(--transition-fast);
}

.location-detail a:hover {
    color: var(--emerald-900);
}

.hours-highlight {
    font-weight: 600;
    color: var(--emerald-800);
}

.location-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    min-height: 450px;
    box-shadow: var(--shadow-md);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

/* --- CONTACT --- */
.contact {
    padding: var(--space-3xl) 0;
    background: var(--cream-50);
}

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

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

.contact-intro {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: var(--space-lg);
}

.contact-direct {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.contact-direct-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--emerald-800);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(6, 78, 59, 0.15);
    transition: all var(--transition-fast);
}

.contact-direct-item:hover {
    background: var(--emerald-900);
    color: var(--cream-50);
    border-color: var(--emerald-900);
}

.contact-direct-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.contact-form-wrap {
    background: var(--cream-100);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    padding: 12px 16px;
    border: 1.5px solid var(--cream-300);
    border-radius: var(--radius-sm);
    background: var(--cream-50);
    color: var(--text-dark);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--emerald-700);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

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

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

.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--emerald-900);
    color: var(--cream-50);
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    margin-top: var(--space-sm);
}

.form-success svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--gold-400);
}

/* --- CTA BANNER --- */
.cta-banner {
    padding: var(--space-2xl) 0;
    background: var(--emerald-900);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

.cta-text .section-eyebrow {
    color: var(--gold-400);
}

.cta-text .section-eyebrow::before {
    background: var(--gold-400);
}

.cta-heading {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--cream-50);
    margin-top: var(--space-xs);
}

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

/* --- FOOTER --- */
.footer {
    background: var(--emerald-950);
    color: var(--cream-50);
    padding: var(--space-2xl) 0 var(--space-md);
}

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

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: var(--space-sm);
    text-decoration: none;
    color: var(--cream-50);
}

.footer-logo .logo-mark {
    width: 36px;
    height: 36px;
    font-size: 0.75rem;
}

.footer-logo .logo-text {
    font-size: 0.9375rem;
}

.footer-tagline {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-on-dark-muted);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--cream-50);
    margin-bottom: var(--space-md);
}

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

.footer-links a {
    font-size: 0.9375rem;
    color: var(--text-on-dark-muted);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--gold-400);
}

.footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact p {
    font-size: 0.9375rem;
    color: var(--text-on-dark-muted);
    line-height: 1.5;
}

.footer-contact a {
    color: var(--text-on-dark-muted);
    transition: color var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--gold-400);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
    padding-top: var(--space-md);
    font-size: 0.8125rem;
    color: var(--text-on-dark-muted);
}

/* --- MOBILE NAV --- */
@media (max-width: 1023px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--cream-50);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: var(--space-lg);
        transform: translateX(100%);
        transition: transform var(--transition-med);
        z-index: 999;
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
    }

    .nav-link {
        font-size: 1.125rem;
    }

    .nav-cta {
        margin-top: var(--space-sm);
    }
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-left {
        padding-right: 0;
        order: 1;
    }

    .hero-right {
        order: 0;
        display: none;
    }

    .hero-eyebrow {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        align-items: center;
    }

    .about-grid,
    .specials-split,
    .location-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-content,
    .location-info,
    .contact-content {
        padding-left: 0;
        padding-right: 0;
    }

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

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

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

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: 0 auto;
    }

    .specials-image {
        height: 400px;
        order: -1;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
    }

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

@media (max-width: 600px) {
    .hero {
        padding-top: 72px;
    }

    .hero-headline {
        font-size: clamp(2.25rem, 8vw, 3rem);
    }

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

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

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

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

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

/* --- REDUCED MOTION --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .hero-scroll-indicator {
        animation: none;
    }

    .product-card:hover {
        transform: none;
    }

    .product-card:hover .product-img img {
        transform: none;
    }
}
