/* ============================================
   HOLLY SPRINGS NUTRITION — Custom Styles
   Forest Green + Off-White | Vibrant Modern
   ============================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green-900: #064e3b;
    --green-800: #065f46;
    --green-700: #047857;
    --green-600: #059669;
    --green-500: #10b981;
    --green-400: #34d399;
    --green-300: #6ee7b7;
    --green-200: #a7f3d0;
    --green-100: #d1fae5;
    --green-50:  #ecfdf5;
    --off-white: #faf9f6;
    --cream:     #f5f4f0;
    --warm-gray: #e8e6e1;
    --text-dark: #1a1a1a;
    --text-mid:  #3d3d3d;
    --text-light:#6b6b6b;
    --white:     #ffffff;
    --shadow-sm: 0 1px 3px rgba(6,78,59,0.08);
    --shadow-md: 0 4px 20px rgba(6,78,59,0.10);
    --shadow-lg: 0 12px 40px rgba(6,78,59,0.14);
    --shadow-xl: 0 20px 60px rgba(6,78,59,0.16);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 30px;
    --font-sans: 'Outfit', system-ui, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

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

.nav.scrolled {
    background: rgba(250,249,246,0.95);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--green-900);
    letter-spacing: -0.02em;
}

.logo-accent {
    color: var(--green-600);
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-mid);
    transition: color var(--transition);
    position: relative;
}

.nav-links a:not(.btn):hover {
    color: var(--green-700);
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green-500);
    border-radius: 2px;
    transition: width var(--transition);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--green-900);
    border-radius: 2px;
    transition: var(--transition);
}

.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);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-xl);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--green-700);
    color: var(--white);
    border-color: var(--green-700);
}

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

.btn-outline {
    background: transparent;
    color: var(--green-800);
    border-color: var(--green-700);
}

.btn-outline:hover {
    background: var(--green-700);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--green-600);
    margin-bottom: 16px;
}

.section-eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--green-400);
    border-radius: 2px;
}

.section-heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--green-900);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-heading em {
    font-style: italic;
    color: var(--green-600);
}

.section-sub {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 560px;
    line-height: 1.7;
}

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

.section-header.centered .section-sub {
    margin: 0 auto;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--green-50) 50%, var(--cream) 100%);
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.geo-circle {
    position: absolute;
    border-radius: 50%;
}

.geo-circle--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(52,211,153,0.12) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.geo-circle--2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(6,78,59,0.08) 0%, transparent 70%);
    bottom: -50px;
    left: -80px;
}

.geo-tri {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 60px 104px 60px;
    border-color: transparent transparent rgba(52,211,153,0.15) transparent;
    top: 20%;
    right: 8%;
    transform: rotate(15deg);
}

.geo-dots {
    position: absolute;
    width: 120px;
    height: 120px;
    bottom: 15%;
    right: 15%;
    background-image: radial-gradient(circle, var(--green-300) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    opacity: 0.5;
}

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

.hero-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(6,78,59,0.06);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-500), var(--green-300), var(--green-500));
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--green-700);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-400);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--green-900);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-headline .highlight {
    color: var(--green-600);
    position: relative;
}

.hero-headline .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 6px;
    background: rgba(52,211,153,0.25);
    border-radius: 3px;
    z-index: -1;
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.75;
    margin-bottom: 32px;
}

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

/* Floating Stat Cards */
.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    position: relative;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(6,78,59,0.06);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 3px 3px 0 0;
}

.stat-card--1::before { background: var(--green-500); }
.stat-card--2::before { background: var(--green-300); }
.stat-card--3::before { background: var(--green-400); }
.stat-card--4::before { background: var(--green-600); }

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

.stat-card--1 { transform: translateY(20px); }
.stat-card--1:hover { transform: translateY(16px); }
.stat-card--3 { transform: translateY(-10px); }
.stat-card--3:hover { transform: translateY(-14px); }

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--green-50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-600);
    margin-bottom: 12px;
}

.stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--green-900);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: 120px 0;
    background: var(--white);
}

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

.about-visual {
    position: relative;
}

.about-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-img-wrap img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.about-img-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--green-400);
    border-radius: var(--radius-md);
    z-index: -1;
}

.about-badge {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: var(--green-900);
    color: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-md);
}

.about-content .section-heading {
    margin-bottom: 24px;
}

.about-content > p {
    color: var(--text-mid);
    margin-bottom: 16px;
    font-size: 1.02rem;
    line-height: 1.8;
}

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

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

.value-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: var(--radius-sm);
    background: var(--green-50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-600);
}

.value-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--green-900);
    margin-bottom: 2px;
}

.value-item span {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ============================================
   PRODUCTS
   ============================================ */
.products {
    padding: 120px 0;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.products-bg-block {
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, var(--green-50) 0%, transparent 70%);
    pointer-events: none;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(6,78,59,0.05);
    transition: all var(--transition);
}

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

.product-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--green-700);
    color: var(--white);
    padding: 4px 12px;
    border-radius: var(--radius-xl);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-info {
    padding: 24px;
}

.product-info h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--green-900);
    margin-bottom: 8px;
}

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

/* ============================================
   CRAFT
   ============================================ */
.craft {
    padding: 120px 0;
    background: var(--green-900);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.craft::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(52,211,153,0.06);
    pointer-events: none;
}

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

.craft-content .section-eyebrow {
    color: var(--green-400);
}

.craft-content .section-eyebrow::before {
    background: var(--green-400);
}

.craft-content .section-heading {
    color: var(--white);
}

.craft-content .section-heading em {
    color: var(--green-300);
}

.craft-intro {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 40px;
}

.craft-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.craft-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--green-500);
    line-height: 1;
    min-width: 48px;
    opacity: 0.6;
}

.step-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.step-content p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

.craft-visual {
    position: relative;
}

.craft-img-stack {
    position: relative;
    height: 560px;
}

.craft-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    height: 500px;
}

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

.craft-img-float {
    position: absolute;
    bottom: 0;
    right: -30px;
    width: 180px;
    height: 180px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--green-900);
}

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

.craft-geo-accent {
    position: absolute;
    top: 30px;
    right: 40px;
}

.geo-square {
    width: 60px;
    height: 60px;
    background: var(--green-500);
    border-radius: var(--radius-sm);
    opacity: 0.3;
    transform: rotate(20deg);
}

.geo-circle-small {
    width: 30px;
    height: 30px;
    background: var(--green-300);
    border-radius: 50%;
    margin-top: 10px;
    opacity: 0.4;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-300), var(--green-500), var(--green-300));
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(6,78,59,0.05);
    transition: all var(--transition);
    position: relative;
}

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

.testimonial-quote {
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--green-100);
    flex-shrink: 0;
}

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

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--green-900);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ============================================
   VISIT / CTA
   ============================================ */
.visit {
    padding: 120px 0;
    background: var(--green-800);
    position: relative;
    overflow: hidden;
}

.visit-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.visit-geo {
    position: absolute;
    opacity: 0.06;
}

.visit-geo--circle {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--green-400);
    top: -100px;
    left: -100px;
}

.visit-geo--square {
    width: 200px;
    height: 200px;
    background: var(--green-300);
    bottom: 50px;
    right: 10%;
    transform: rotate(30deg);
}

.visit-geo--tri {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 50px 87px 50px;
    border-color: transparent transparent var(--green-200) transparent;
    top: 15%;
    right: 5%;
    transform: rotate(-10deg);
    opacity: 0.1;
}

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

.visit-content .section-eyebrow {
    color: var(--green-300);
}

.visit-content .section-eyebrow::before {
    background: var(--green-400);
}

.visit-content .section-heading {
    color: var(--white);
}

.visit-content .section-heading em {
    color: var(--green-300);
}

.visit-intro {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 40px;
}

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

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

.detail-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: var(--radius-sm);
    background: rgba(52,211,153,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-400);
}

.visit-detail strong {
    display: block;
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 4px;
}

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

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

.visit-form-wrap {
    position: relative;
}

.visit-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.visit-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green-400), var(--green-600));
}

.visit-form-card h3 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green-900);
    margin-bottom: 8px;
}

.visit-form-card > p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-mid);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--warm-gray);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--off-white);
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--green-500);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(52,211,153,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: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success svg {
    margin: 0 auto 16px;
}

.form-success h4 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--green-900);
    margin-bottom: 8px;
}

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

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--green-900);
    color: var(--white);
    padding: 80px 0 0;
}

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

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 300px;
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links strong,
.footer-contact strong {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--green-400);
    margin-bottom: 4px;
}

.footer-links a,
.footer-contact a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--green-300);
}

.footer-contact span {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

.footer-bottom {
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-stats {
        max-width: 500px;
    }

    .about-grid,
    .craft-grid,
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

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

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250,249,246,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(6,78,59,0.07);
        transform: translateY(-120%);
        transition: transform var(--transition);
        box-shadow: var(--shadow-md);
    }

    .nav-links.open {
        transform: translateY(0);
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-card {
        padding: 32px;
    }

    .hero-actions {
        flex-direction: column;
    }

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

    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    .stat-card--1 { transform: none; }
    .stat-card--3 { transform: none; }
    .stat-card--1:hover { transform: translateY(-4px); }
    .stat-card--3:hover { transform: translateY(-4px); }

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

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

    .about-img-accent {
        width: 80px;
        height: 80px;
        bottom: -10px;
        right: -10px;
    }

    .about-badge {
        left: 10px;
        bottom: 16px;
    }

    .craft-img-stack {
        height: 400px;
    }

    .craft-img-main {
        height: 340px;
    }

    .craft-img-float {
        width: 130px;
        height: 130px;
        right: -10px;
        bottom: 0;
    }

    .visit-form-card {
        padding: 28px;
    }

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-card {
        padding: 24px;
    }

    .hero-headline {
        font-size: 1.4rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .section-heading {
        font-size: 1.8rem;
    }

    .about,
    .products,
    .craft,
    .testimonials,
    .visit {
        padding: 80px 0;
    }
}
