/* ============================================
   ADAMS' FRUIT MARKET — Custom Styles
   Teal + Slate Grey | Vibrant Geometric
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --teal-50: #F0FDFA;
    --teal-100: #CCFBF1;
    --teal-200: #99F6E4;
    --teal-300: #5EEAD4;
    --teal-400: #2DD4BF;
    --teal-500: #14B8A6;
    --teal-600: #0D9488;
    --teal-700: #0F766E;
    --teal-800: #115E59;
    --teal-900: #134E4A;

    --slate-50: #F8FAFC;
    --slate-100: #F1F5F9;
    --slate-200: #E2E8F0;
    --slate-300: #CBD5E1;
    --slate-400: #94A3B8;
    --slate-500: #64748B;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1E293B;
    --slate-900: #0F172A;

    --accent-warm: #F97316;
    --accent-coral: #F43F5E;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 4px 20px rgba(15, 23, 42, 0.1);
    --shadow-lg: 0 10px 40px rgba(15, 23, 42, 0.12);
    --shadow-xl: 0 20px 60px rgba(15, 23, 42, 0.15);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--slate-800);
    background: var(--slate-50);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

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

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

.text-teal {
    color: var(--teal-600);
}

/* --- Geometric Background Shapes --- */
.geo-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.geo {
    position: absolute;
    opacity: 0.04;
}

.geo--circle-1 {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--teal-500);
    top: -200px;
    right: -150px;
}

.geo--circle-2 {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--accent-warm);
    bottom: 20%;
    left: -100px;
}

.geo--square-1 {
    width: 200px;
    height: 200px;
    background: var(--teal-400);
    top: 40%;
    right: 5%;
    transform: rotate(45deg);
}

.geo--triangle {
    width: 0;
    height: 0;
    border-left: 120px solid transparent;
    border-right: 120px solid transparent;
    border-bottom: 208px solid var(--accent-coral);
    top: 60%;
    left: 8%;
    opacity: 0.03;
}

.geo--dot-grid {
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, var(--teal-600) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    top: 30%;
    right: 10%;
    opacity: 0.08;
}

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

.btn--primary {
    background: var(--teal-600);
    color: white;
    box-shadow: 0 4px 16px rgba(13, 148, 136, 0.35);
}

.btn--primary:hover {
    background: var(--teal-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.4);
}

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

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

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

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

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

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.navbar.scrolled .logo {
    color: var(--slate-900);
}

.logo-icon {
    color: var(--teal-400);
}

.logo-accent {
    color: var(--teal-400);
}

.navbar.scrolled .logo-accent {
    color: var(--teal-600);
}

.logo--light .logo-icon {
    color: var(--teal-400);
}

.logo--light .logo-accent {
    color: var(--teal-400);
}

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

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

.nav-links a:hover {
    color: white;
}

.navbar.scrolled .nav-links a {
    color: var(--slate-600);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--teal-600);
}

.btn--nav {
    background: var(--teal-500);
    color: white !important;
    padding: 10px 22px;
    border-radius: var(--radius-xl);
    font-weight: 600;
}

.btn--nav:hover {
    background: var(--teal-600);
    transform: translateY(-1px);
}

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

.nav-toggle-line {
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all var(--transition);
}

.navbar.scrolled .nav-toggle-line {
    background: var(--slate-800);
}

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

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

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

/* --- Hero --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.82) 0%,
        rgba(13, 148, 136, 0.55) 50%,
        rgba(15, 23, 42, 0.7) 100%
    );
    z-index: -1;
}

.hero-geo-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 40%;
    background: linear-gradient(135deg, transparent 50%, rgba(13, 148, 136, 0.15) 100%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    padding: 120px 0 80px;
    max-width: 780px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: 50px;
    color: var(--teal-200);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease forwards;
}

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

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(38px, 5.5vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    color: white;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s 0.1s ease forwards;
    opacity: 0;
}

.hero-headline em {
    font-style: italic;
    color: var(--teal-300);
}

.hero-headline .text-teal {
    color: var(--teal-400);
}

.hero-sub {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 560px;
    animation: fadeInUp 0.8s 0.2s ease forwards;
    opacity: 0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 56px;
    animation: fadeInUp 0.8s 0.3s ease forwards;
    opacity: 0;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: fadeInUp 0.8s 0.4s ease forwards;
    opacity: 0;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--teal-400);
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

/* --- Sections --- */
.section {
    position: relative;
    z-index: 1;
    padding: 100px 0;
}

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

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--teal-600);
    background: var(--teal-50);
    border: 1px solid var(--teal-200);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    color: var(--slate-900);
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 18px;
    color: var(--slate-500);
    max-width: 520px;
    margin: 0 auto;
}

/* --- About --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

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

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

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

.about-image-accent {
    position: absolute;
    bottom: -40px;
    right: -30px;
    width: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid white;
}

.about-image-accent img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--teal-600);
    color: white;
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.about-badge-number {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.about-badge-text {
    font-size: 12px;
    opacity: 0.85;
    line-height: 1.4;
}

.about-lead {
    font-size: 20px;
    font-weight: 500;
    color: var(--slate-800);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

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

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

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.feature-icon--teal {
    background: var(--teal-600);
}

.feature-icon--slate {
    background: var(--slate-700);
}

.feature-item strong {
    display: block;
    font-size: 15px;
    color: var(--slate-800);
    margin-bottom: 2px;
}

.feature-item span {
    font-size: 14px;
    color: var(--slate-500);
}

/* --- Products --- */
.products {
    background: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 24px;
}

.product-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--slate-50);
    transition: all var(--transition);
}

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

.product-card--large {
    grid-column: span 7;
    min-height: 420px;
}

.product-card:not(.product-card--large):not(.product-card--wide) {
    grid-column: span 5;
    min-height: 200px;
}

.product-card--wide {
    grid-column: span 12;
    min-height: 260px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.product-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--teal-600) 0%, var(--teal-800) 100%);
    opacity: 0.06;
}

.product-card-content {
    position: relative;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}

.product-card--large .product-card-content {
    justify-content: center;
}

.product-card--wide .product-card-content {
    justify-content: center;
    max-width: 50%;
}

.product-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: var(--teal-600);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--slate-900);
}

.product-card p {
    font-size: 15px;
    color: var(--slate-600);
    line-height: 1.65;
}

.product-card-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-top: auto;
}

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

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

.product-card--large .product-card-img img {
    height: 200px;
}

.product-card:not(.product-card--large):not(.product-card--wide) .product-card-img img {
    height: 140px;
}

.product-card--wide .product-card-img img {
    height: 200px;
}

/* --- Specials --- */
.specials {
    background: var(--slate-900);
    color: white;
    overflow: hidden;
}

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

.specials .section-tag {
    background: rgba(13, 148, 136, 0.2);
    border-color: rgba(13, 148, 136, 0.4);
    color: var(--teal-400);
}

.specials .section-title {
    color: white;
    text-align: left;
}

.specials-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    margin-bottom: 32px;
}

.seasonal-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.seasonal-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
}

.seasonal-dot {
    flex-shrink: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--teal-400);
    box-shadow: 0 0 0 4px rgba(45, 212, 191, 0.2);
}

.specials-visual {
    position: relative;
}

.specials-image-stack {
    position: relative;
    height: 560px;
}

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

.specials-img--1 {
    width: 300px;
    height: 380px;
    top: 0;
    left: 0;
    z-index: 2;
}

.specials-img--2 {
    width: 240px;
    height: 240px;
    bottom: 20px;
    right: 0;
    z-index: 3;
}

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

.geo-ring {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(13, 148, 136, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.geo-ring--sm {
    width: 120px;
    height: 120px;
    border-color: rgba(244, 63, 94, 0.2);
}

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

.visit-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.visit-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    padding: 28px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--slate-100);
}

.visit-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--teal-200);
    transform: translateX(4px);
}

.visit-card-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: var(--teal-50);
    color: var(--teal-600);
    display: flex;
    align-items: center;
    justify-content: center;
}

.visit-card strong {
    display: block;
    font-size: 15px;
    color: var(--slate-900);
    margin-bottom: 4px;
}

.visit-card p {
    font-size: 14px;
    color: var(--slate-500);
    line-height: 1.6;
}

.visit-card a {
    color: var(--teal-600);
    font-weight: 500;
}

.visit-card a:hover {
    color: var(--teal-700);
    text-decoration: underline;
}

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

/* --- Contact --- */
.contact {
    background: white;
}

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

.contact-info .section-title {
    text-align: left;
}

.contact-info p {
    font-size: 17px;
    color: var(--slate-500);
    line-height: 1.75;
    margin-bottom: 32px;
}

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

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--slate-700);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    transition: all var(--transition);
}

.contact-link:hover {
    background: var(--teal-50);
    border-color: var(--teal-200);
    color: var(--teal-700);
}

.contact-form-wrap {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 40px;
}

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

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

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--slate-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 15px;
    padding: 14px 16px;
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-sm);
    background: white;
    color: var(--slate-800);
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal-500);
    box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

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

.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 40px 20px;
}

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

.success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--teal-50);
    color: var(--teal-600);
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-success h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--slate-900);
}

.form-success p {
    font-size: 15px;
    color: var(--slate-500);
}

/* --- Footer --- */
.footer {
    background: var(--slate-900);
    color: white;
    padding: 64px 0 0;
}

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

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

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

.footer-col a,
.footer-col span {
    display: block;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    padding: 6px 0;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: var(--teal-400);
}

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

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes scrollLine {
    0% { opacity: 0; transform: scaleY(0); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}

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

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

/* --- Responsive --- */
@media (max-width: 1024px) {
    .about-grid {
        gap: 48px;
    }
    
    .specials-layout {
        gap: 48px;
    }
    
    .specials-image-stack {
        height: 440px;
    }
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image-wrap {
        max-width: 500px;
    }
    
    .products-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .product-card--large {
        grid-column: span 2;
    }
    
    .product-card:not(.product-card--large):not(.product-card--wide) {
        grid-column: span 1;
    }
    
    .product-card--wide {
        grid-column: span 2;
    }
    
    .specials-layout {
        grid-template-columns: 1fr;
    }
    
    .specials-visual {
        order: -1;
    }
    
    .specials-image-stack {
        height: 400px;
        max-width: 400px;
    }
    
    .visit-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 72px 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        box-shadow: var(--shadow-xl);
        transition: right var(--transition);
        z-index: 1000;
    }
    
    .nav-links.open {
        right: 0;
    }
    
    .nav-links a {
        color: var(--slate-700) !important;
        font-size: 18px;
    }
    
    .nav-links a:hover {
        color: var(--teal-600) !important;
    }
    
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.5);
        z-index: 999;
    }
    
    .nav-overlay.show {
        display: block;
    }
    
    .hero-content {
        padding: 100px 0 60px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card--large,
    .product-card:not(.product-card--large):not(.product-card--wide),
    .product-card--wide {
        grid-column: span 1;
        min-height: 300px;
    }
    
    .product-card--wide {
        grid-template-columns: 1fr;
    }
    
    .product-card--wide .product-card-content {
        max-width: 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .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-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        justify-content: center;
    }
    
    .hero-stats {
        flex-wrap: wrap;
    }
    
    .stat-divider {
        display: none;
    }
    
    .about-image-accent {
        right: -10px;
        bottom: -20px;
        width: 150px;
    }
    
    .about-badge {
        left: -10px;
        top: -10px;
    }
    
    .specials-image-stack {
        height: 320px;
    }
    
    .specials-img--1 {
        width: 220px;
        height: 280px;
    }
    
    .specials-img--2 {
        width: 180px;
        height: 180px;
    }
    
    .contact-form-wrap {
        padding: 24px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}
