/* ============================================
   TEAZSOL — Artisan Bakery & Grocery
   Vibrant Modern | Forest Green + Off-White
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --forest: #1B4332;
    --forest-light: #2D6A4F;
    --forest-dark: #0D1F17;
    --off-white: #FAF8F5;
    --cream: #F0EDE8;
    --warm: #D4A373;
    --warm-light: #E8C9A0;
    --warm-dark: #B8860B;
    --text-dark: #1A1A1A;
    --text-mid: #4A4A4A;
    --text-light: #7A7A7A;
    --white: #FFFFFF;
    --shadow-sm: 0 1px 3px rgba(27, 67, 50, 0.08);
    --shadow-md: 0 4px 20px rgba(27, 67, 50, 0.1);
    --shadow-lg: 0 8px 40px rgba(27, 67, 50, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-body);
    background-color: var(--off-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

ul {
    list-style: none;
}

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

/* --- Typography --- */
.section-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--warm-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-label::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--warm);
}

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

.section-header--center .section-label {
    justify-content: center;
}

.section-header--center .section-label::before {
    display: none;
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--forest);
    margin-bottom: 24px;
}

.text-accent {
    color: var(--warm-dark);
    font-style: italic;
}

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

.section-header--center .section-subhead {
    margin: 0 auto;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    white-space: nowrap;
}

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

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

.btn--ghost {
    background: transparent;
    color: var(--forest);
    border: 2px solid var(--forest);
}

.btn--ghost:hover {
    background: var(--forest);
    color: var(--white);
}

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

.btn--light:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

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

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

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

.btn--large {
    padding: 18px 36px;
    font-size: 1rem;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 245, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(27, 67, 50, 0.08);
    transition: var(--transition);
}

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

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

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

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

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--warm);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--forest);
}

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

.nav-cta {
    background: var(--forest) !important;
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-weight: 600 !important;
}

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

.nav-cta:hover {
    background: var(--forest-light) !important;
}

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

.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--forest);
    transition: var(--transition);
    transform-origin: center;
}

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

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

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

/* Mobile Overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: var(--off-white);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.nav-overlay-inner {
    text-align: center;
}

.nav-overlay-close {
    position: absolute;
    top: 24px;
    right: 24px;
    color: var(--forest);
    padding: 8px;
}

.nav-overlay-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.nav-overlay-links a {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--forest);
    transition: var(--transition);
}

.nav-overlay-links a:hover {
    color: var(--warm-dark);
}

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

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

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

.hero-circle--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(27, 67, 50, 0.06) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}

.hero-rect {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--warm-light);
    opacity: 0.3;
    border-radius: var(--radius-lg);
    bottom: 15%;
    left: -40px;
    transform: rotate(15deg);
}

.hero-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 120px 120px;
    border-color: transparent transparent var(--forest) transparent;
    opacity: 0.06;
    top: 20%;
    right: 5%;
    transform: rotate(45deg);
}

.hero-dot-group {
    position: absolute;
    bottom: 20%;
    right: 8%;
    display: grid;
    grid-template-columns: repeat(3, 12px);
    gap: 12px;
    opacity: 0.3;
}

.hero-dot-group span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--warm);
}

.hero-dot-group span:nth-child(odd) {
    background: var(--forest);
}

.hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    position: relative;
    z-index: 1;
}

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

.hero-text-col {
    max-width: 560px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 28px;
}

.hero-eyebrow-line {
    width: 40px;
    height: 2px;
    background: var(--warm);
    flex-shrink: 0;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    color: var(--forest);
    margin-bottom: 28px;
}

.hero-headline-accent {
    color: var(--warm-dark);
    font-style: italic;
}

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

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--forest);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(27, 67, 50, 0.15);
}

/* Hero Image Stack */
.hero-img-col {
    position: relative;
}

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

.hero-img-main {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.hero-img-float {
    position: absolute;
    bottom: -30px;
    left: -40px;
    width: 220px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--off-white);
}

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

.hero-img-float-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--forest);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    animation: scrollBounce 2s ease-in-out infinite;
}

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

/* --- Marquee --- */
.marquee {
    background: var(--forest);
    padding: 16px 0;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 40px;
    align-items: center;
    animation: marqueeScroll 25s linear infinite;
    width: max-content;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee span {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    white-space: nowrap;
    letter-spacing: 0.05em;
}

.marquee-dot {
    font-size: 0.6rem !important;
    color: var(--warm) !important;
}

/* --- About --- */
.about {
    padding: 120px 0;
    background: var(--off-white);
    position: relative;
}

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

.about-img-side {
    position: relative;
}

.about-img-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

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

.about-accent-block {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: var(--warm-light);
    opacity: 0.4;
    border-radius: var(--radius-lg);
    z-index: 0;
}

.about-text-side {
    padding: 20px 0;
}

.about-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 20px;
}

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

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

.about-value-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--cream);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-value strong {
    display: block;
    font-size: 1rem;
    color: var(--forest);
    margin-bottom: 4px;
}

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

/* --- Products --- */
.products {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.products-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.pattern-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 2px solid rgba(27, 67, 50, 0.06);
    bottom: -100px;
    right: -100px;
}

.pattern-square {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--forest);
    opacity: 0.03;
    border-radius: var(--radius-md);
    top: 10%;
    left: 5%;
    transform: rotate(30deg);
}

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

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    position: relative;
    z-index: 1;
}

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

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

.product-card--featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
}

.product-card--featured .product-card-img {
    height: 100%;
    min-height: 320px;
}

.product-card--featured .product-card-img img {
    height: 100%;
}

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

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

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

.product-card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--forest);
    color: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-card-body {
    padding: 28px;
}

.product-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 12px;
}

.product-card-body p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-mid);
}

/* --- Process --- */
.process {
    padding: 120px 0;
    background: var(--off-white);
    position: relative;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 64px;
}

.process-step {
    position: relative;
    padding: 40px 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
}

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

.process-step-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--cream);
    line-height: 1;
    margin-bottom: 16px;
    transition: var(--transition);
}

.process-step:hover .process-step-number {
    color: rgba(27, 67, 50, 0.1);
}

.process-step-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--warm);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.process-step h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 12px;
}

.process-step p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-mid);
}

/* --- Visit --- */
.visit {
    padding: 120px 0;
    background: var(--forest);
    position: relative;
    overflow: hidden;
}

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

.visit-circle-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06);
    top: -150px;
    right: -150px;
}

.visit-circle-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(212, 163, 115, 0.08);
    bottom: -80px;
    left: -80px;
}

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

.visit-info .section-label {
    color: var(--warm);
}

.visit-info .section-label::before {
    background: var(--warm);
}

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

.visit-info .section-heading .text-accent {
    color: var(--warm-light);
}

.visit-details {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

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

.visit-detail-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--warm);
}

.visit-detail strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}

.visit-detail p,
.visit-detail a {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

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

.visit-img-side {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

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

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

.visit-img-secondary {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

/* --- CTA --- */
.cta {
    padding: 120px 0;
    background: var(--warm);
    position: relative;
    overflow: hidden;
}

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

.cta-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    top: -100px;
    left: -100px;
    pointer-events: none;
}

.cta-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--forest-dark);
    line-height: 1.15;
    margin-bottom: 24px;
}

.cta-heading span {
    font-style: italic;
    color: var(--forest);
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(13, 31, 23, 0.7);
    line-height: 1.7;
    margin-bottom: 40px;
}

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

.cta-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(27, 67, 50, 0.15);
}

.cta-dot:nth-child(1) { top: 15%; left: 10%; }
.cta-dot:nth-child(2) { top: 25%; left: 20%; width: 12px; height: 12px; }
.cta-dot:nth-child(3) { top: 70%; right: 15%; }
.cta-dot:nth-child(4) { top: 80%; right: 25%; width: 16px; height: 16px; }
.cta-dot:nth-child(5) { top: 50%; left: 5%; width: 6px; height: 6px; }

/* --- Contact --- */
.contact {
    padding: 120px 0;
    background: var(--off-white);
}

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

.contact-info-side {
    padding: 20px 0;
}

.contact-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 40px;
}

.contact-direct {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-direct-link {
    display: flex;
    flex-direction: column;
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-direct-link:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

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

.contact-direct-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--forest);
}

/* Contact Form */
.contact-form-side {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-md);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--cream);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--off-white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--forest);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(27, 67, 50, 0.1);
}

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

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

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

.form-success-icon {
    margin: 0 auto 20px;
    width: 80px;
    height: 80px;
    background: rgba(27, 67, 50, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--forest);
    margin-bottom: 12px;
}

.form-success p {
    color: var(--text-mid);
    line-height: 1.6;
}

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

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

.footer-brand p {
    margin-top: 16px;
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

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

.footer-col strong {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--warm);
    margin-bottom: 20px;
}

.footer-col a,
.footer-col span {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    transition: var(--transition);
    line-height: 1.5;
}

.footer-col a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-layout {
        gap: 40px;
    }

    .hero-img-stack {
        height: 480px;
    }

    .about-layout {
        gap: 48px;
    }

    .about-img-wrapper img {
        height: 500px;
    }

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

    .visit-layout {
        gap: 48px;
    }

    .visit-img-main img {
        height: 400px;
    }

    .contact-layout {
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

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

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-text-col {
        max-width: 100%;
        order: 1;
    }

    .hero-img-col {
        order: 0;
    }

    .hero-img-stack {
        height: 360px;
    }

    .hero-img-float {
        width: 160px;
        left: -16px;
        bottom: -16px;
    }

    .hero-img-float img {
        height: 160px;
    }

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

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

    .hero-stats {
        gap: 16px;
    }

    .hero-stat-num {
        font-size: 1.4rem;
    }

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

    .about-img-wrapper img {
        height: 400px;
    }

    .about-accent-block {
        width: 120px;
        height: 120px;
        top: -12px;
        right: -12px;
    }

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

    .product-card--featured {
        grid-template-columns: 1fr;
    }

    .product-card--featured .product-card-img {
        min-height: 220px;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .visit-layout {
        grid-template-columns: 1fr;
    }

    .visit-img-main img {
        height: 300px;
    }

    .visit-img-secondary img {
        height: 200px;
    }

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

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-form-side {
        padding: 32px 24px;
    }

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

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

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

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

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

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

    .about-values {
        gap: 20px;
    }

    .about-value {
        flex-direction: column;
        gap: 12px;
    }

    .visit-details {
        gap: 20px;
    }

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