/* ========================================
   Albuquerque Tortilla Company
   Bold Editorial · Terracotta + Sand
   ======================================== */

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

:root {
    --terracotta: #C05A3A;
    --terracotta-dark: #9E4529;
    --terracotta-light: #D4785A;
    --sand: #F5E6D3;
    --sand-light: #FAF3EB;
    --sand-dark: #E8D5C0;
    --cream: #FDF9F5;
    --charcoal: #1A1410;
    --charcoal-light: #3D3229;
    --warm-gray: #6B5B50;
    --warm-gray-light: #9A8A7E;
    --white: #FFFFFF;
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--cream);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

.heading-serif {
    font-family: var(--font-serif);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--charcoal);
}

.heading-serif em {
    font-style: italic;
    font-weight: 700;
    color: var(--terracotta);
}

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

.label-line {
    display: inline-block;
    width: 40px;
    height: 2px;
    background: var(--terracotta);
    flex-shrink: 0;
}

.section-heading {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    margin-bottom: 24px;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.4s var(--ease-out);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--terracotta);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(192, 90, 58, 0.3);
}

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

.btn-ghost:hover {
    background: var(--charcoal);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--terracotta);
}

.btn-white:hover {
    background: var(--sand);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

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

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.5s var(--ease-out);
}

.nav.scrolled {
    background: rgba(253, 249, 245, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    box-shadow: 0 1px 0 rgba(26, 20, 16, 0.08);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1rem;
    color: var(--charcoal);
    letter-spacing: -0.01em;
}

.nav.scrolled .nav-logo {
    color: var(--charcoal);
}

.nav-logo-icon {
    flex-shrink: 0;
}

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

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--charcoal-light);
    transition: color 0.3s ease;
    position: relative;
}

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

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

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

.nav-cta {
    background: var(--charcoal);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    transition: all 0.3s var(--ease-out) !important;
}

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

.nav-cta:hover {
    background: var(--terracotta) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
}

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

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

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

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

/* ── Mobile Menu ── */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s var(--ease-out);
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--charcoal);
    padding: 8px;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mobile-menu-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--charcoal);
    padding: 12px 24px;
    transition: color 0.3s ease;
}

.mobile-menu-link:hover {
    color: var(--terracotta);
}

.mobile-menu-cta {
    margin-top: 16px;
    background: var(--terracotta);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
}

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

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(192, 90, 58, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 230, 211, 0.8) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 24px;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.03em;
    color: var(--charcoal);
    margin-bottom: 28px;
}

.hero-headline em {
    font-style: italic;
    color: var(--terracotta);
    font-weight: 700;
}

.hero-sub {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--warm-gray);
    max-width: 480px;
    margin-bottom: 40px;
}

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

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

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

.hero-stat-num {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--charcoal);
    letter-spacing: -0.02em;
}

.hero-stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--warm-gray-light);
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--sand-dark);
}

/* Hero Image Stack */
.hero-image-stack {
    position: relative;
    height: 680px;
}

.hero-img {
    position: absolute;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 24px 64px rgba(26, 20, 16, 0.15);
}

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

.hero-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.hero-img-main:hover img {
    transform: scale(1.03);
}

.hero-img-accent {
    width: 280px;
    height: 200px;
    bottom: 60px;
    left: -40px;
    border: 4px solid var(--cream);
}

.hero-img-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.hero-img-accent:hover img {
    transform: scale(1.05);
}

.hero-badge {
    position: absolute;
    bottom: 0;
    right: 40px;
    background: var(--terracotta);
    color: var(--white);
    padding: 16px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 12px 32px rgba(192, 90, 58, 0.3);
    animation: float 4s ease-in-out infinite;
}

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

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

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

/* ── Section Divider ── */
.section-divider {
    background: var(--terracotta);
    line-height: 0;
}

/* ── About ── */
.about {
    padding: 120px 0;
    background: var(--sand-light);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(192, 90, 58, 0.04);
    pointer-events: none;
}

.about-container {
    position: relative;
    z-index: 1;
}

.about-label {
    margin-bottom: 56px;
}

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

.about-text .section-heading {
    margin-bottom: 28px;
}

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

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

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

.value-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.value-item strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 2px;
}

.value-item span {
    font-size: 0.9rem;
    color: var(--warm-gray);
}

.about-images {
    position: relative;
    height: 640px;
}

.about-img-main {
    width: 100%;
    height: 480px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(26, 20, 16, 0.12);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.about-img-main:hover img {
    transform: scale(1.03);
}

.about-img-float {
    position: absolute;
    bottom: 0;
    right: -40px;
    width: 240px;
    border-radius: 12px;
    overflow: hidden;
    border: 4px solid var(--sand-light);
    box-shadow: 0 16px 48px rgba(26, 20, 16, 0.12);
}

.about-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.about-img-float:hover img {
    transform: scale(1.05);
}

/* ── Process ── */
.process {
    padding: 120px 0;
    background: var(--cream);
}

.process-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 80px;
}

.process-header .label-line {
    margin: 0 auto 16px;
}

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

.process-header .section-heading {
    margin-bottom: 20px;
}

.process-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--warm-gray);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.process-step {
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.process-step.reverse {
    grid-template-columns: 1fr 1fr auto;
}

.step-number {
    font-family: var(--font-serif);
    font-size: 5rem;
    font-weight: 900;
    color: var(--sand-dark);
    line-height: 1;
    letter-spacing: -0.04em;
}

.step-content {
    padding: 8px 0;
}

.step-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--charcoal);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.step-desc {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--warm-gray);
    max-width: 380px;
}

.step-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(26, 20, 16, 0.1);
    aspect-ratio: 4/3;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.step-image:hover img {
    transform: scale(1.04);
}

/* ── Products ── */
.products {
    padding: 120px 0;
    background: var(--sand-light);
}

.products-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 80px;
}

.products-header .label-line {
    margin: 0 auto 16px;
}

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

.products-header .section-heading {
    margin-bottom: 20px;
}

.products-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--warm-gray);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(26, 20, 16, 0.06);
    transition: all 0.5s var(--ease-out);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 56px rgba(26, 20, 16, 0.12);
}

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

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

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

.product-info {
    padding: 28px;
}

.product-name {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--charcoal);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.product-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--warm-gray);
}

.products-cta {
    text-align: center;
    padding: 40px;
    background: var(--white);
    border-radius: 16px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--warm-gray);
}

.products-cta a {
    color: var(--terracotta);
    font-weight: 600;
    border-bottom: 1.5px solid var(--terracotta);
    transition: all 0.3s ease;
}

.products-cta a:hover {
    color: var(--terracotta-dark);
    border-color: var(--terracotta-dark);
}

/* ── Quote Section ── */
.quote-section {
    padding: 100px 0;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.quote-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 30% 50%, rgba(192, 90, 58, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

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

.quote-mark {
    margin-bottom: 24px;
}

blockquote {
    border: none;
    padding: 0;
    margin: 0;
}

blockquote p {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3.5vw, 2.4rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.4;
    color: var(--sand);
    margin-bottom: 24px;
}

blockquote p em {
    color: var(--terracotta-light);
    font-style: italic;
}

.quote-attr {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--warm-gray-light);
}

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

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

.visit-info .section-heading {
    margin-bottom: 40px;
}

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

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

.visit-detail svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.visit-detail strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 4px;
}

.visit-detail p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--charcoal);
}

.visit-detail a {
    color: var(--charcoal);
    transition: color 0.3s ease;
}

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

.visit-map {
    height: 480px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(26, 20, 16, 0.1);
}

/* ── CTA Banner ── */
.cta-banner {
    padding: 100px 0;
    background: var(--terracotta);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

.cta-content .heading-serif {
    color: var(--white);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    margin-bottom: 20px;
}

.cta-content .heading-serif em {
    color: var(--sand);
}

.cta-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
}

.cta-content a {
    color: var(--sand);
    font-weight: 600;
    border-bottom: 1.5px solid rgba(245, 230, 211, 0.5);
    transition: all 0.3s ease;
}

.cta-content a:hover {
    color: var(--white);
    border-color: var(--white);
}

/* ── Footer ── */
.footer {
    padding: 80px 0 40px;
    background: var(--charcoal);
    color: var(--sand);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo span {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--warm-gray-light);
    max-width: 280px;
}

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

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

.footer-links a {
    font-size: 0.95rem;
    color: var(--warm-gray-light);
    transition: color 0.3s ease;
}

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

.footer-contact p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--warm-gray-light);
}

.footer-contact a {
    color: var(--warm-gray-light);
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(245, 230, 211, 0.1);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--warm-gray);
}

/* ── Scroll Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
    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-container {
        gap: 40px;
    }

    .hero-image-stack {
        height: 520px;
    }

    .hero-img-main {
        width: 300px;
        height: 400px;
    }

    .hero-img-accent {
        width: 220px;
        height: 160px;
    }

    .process-step {
        grid-template-columns: auto 1fr;
        gap: 24px;
    }

    .process-step.reverse {
        grid-template-columns: 1fr auto;
    }

    .step-image {
        display: none;
    }

    .step-number {
        font-size: 3.5rem;
    }

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

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

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 0 80px;
    }

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

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

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

    .hero-img-main {
        width: 240px;
        height: 320px;
        right: 0;
    }

    .hero-img-accent {
        width: 180px;
        height: 130px;
        left: -20px;
        bottom: 20px;
    }

    .hero-badge {
        right: 20px;
        bottom: -10px;
        padding: 12px 18px;
        font-size: 0.85rem;
    }

    .hero-stats {
        gap: 20px;
    }

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

    .hero-scroll {
        display: none;
    }

    .about {
        padding: 80px 0;
    }

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

    .about-images {
        height: 400px;
        order: -1;
    }

    .about-img-main {
        height: 320px;
    }

    .about-img-float {
        width: 180px;
        right: -20px;
    }

    .process {
        padding: 80px 0;
    }

    .process-step,
    .process-step.reverse {
        grid-template-columns: auto 1fr;
        gap: 16px;
    }

    .step-number {
        font-size: 2.5rem;
    }

    .step-title {
        font-size: 1.4rem;
    }

    .products {
        padding: 80px 0;
    }

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

    .quote-section {
        padding: 70px 0;
    }

    .visit {
        padding: 80px 0;
    }

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

    .visit-map {
        height: 320px;
    }

    .cta-banner {
        padding: 70px 0;
    }

    .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-actions {
        flex-direction: column;
    }

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

    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .hero-stat-divider {
        width: 40px;
        height: 1px;
    }

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