/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Inter', system-ui, sans-serif;
    background: #0a0f0d;
    color: #f5f0e8;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.2; }
.text-gold { color: #c9a84c; }
em { font-style: italic; }

/* ===== SECTION LABELS ===== */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 16px;
}
.section-label::before {
    content: '';
    width: 32px;
    height: 1px;
    background: #c9a84c;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: #f5f0e8;
    margin-bottom: 20px;
}
.section-subtitle {
    font-size: 1.1rem;
    color: rgba(245, 240, 232, 0.65);
    max-width: 560px;
    line-height: 1.8;
}
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}
.btn-primary {
    background: linear-gradient(135deg, #c9a84c 0%, #a8893a 100%);
    color: #0a0f0d;
}
.btn-primary:hover {
    background: linear-gradient(135deg, #d4b85e 0%, #c9a84c 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201, 168, 76, 0.3);
}
.btn-outline {
    background: transparent;
    color: #f5f0e8;
    border: 1px solid rgba(201, 168, 76, 0.5);
}
.btn-outline:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: #c9a84c;
    transform: translateY(-2px);
}
.btn-large { padding: 18px 40px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}
.site-header.scrolled {
    background: rgba(10, 15, 13, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #f5f0e8;
}
.logo em { color: #c9a84c; font-style: italic; }
.logo-icon { color: #c9a84c; }

/* Nav */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 36px;
}
.nav-link {
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: rgba(245, 240, 232, 0.75);
    transition: color 0.3s ease;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: #c9a84c;
    transition: width 0.3s ease;
}
.nav-link:hover { color: #f5f0e8; }
.nav-link:hover::after { width: 100%; }
.nav-cta {
    padding: 10px 24px;
    border: 1px solid rgba(201, 168, 76, 0.5);
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #c9a84c;
    transition: all 0.3s ease;
}
.nav-cta:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: #c9a84c;
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 36px;
    height: 36px;
    position: relative;
}
.hamburger {
    display: block;
    width: 22px;
    height: 2px;
    background: #f5f0e8;
    position: absolute;
    left: 7px;
    top: 10px;
    transition: all 0.3s ease;
}
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: #f5f0e8;
    transition: all 0.3s ease;
}
.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }
.nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
.nav-toggle[aria-expanded="true"] .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger::after { top: 0; transform: rotate(-45deg); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 15, 13, 0.7) 0%,
        rgba(10, 15, 13, 0.5) 40%,
        rgba(10, 15, 13, 0.6) 70%,
        rgba(10, 15, 13, 0.95) 100%
    );
}
.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(ellipse at 30% 50%, rgba(16, 60, 40, 0.3) 0%, transparent 60%),
                      radial-gradient(ellipse at 70% 30%, rgba(201, 168, 76, 0.08) 0%, transparent 50%);
}
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 120px 24px 80px;
    max-width: 900px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(201, 168, 76, 0.9);
    margin-bottom: 32px;
    padding: 10px 24px;
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 100px;
    background: rgba(201, 168, 76, 0.06);
}
.badge-line {
    width: 24px;
    height: 1px;
    background: rgba(201, 168, 76, 0.5);
}
.hero-title {
    font-size: clamp(2.4rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 28px;
    color: #f5f0e8;
}
.hero-title em { color: #c9a84c; }
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(245, 240, 232, 0.7);
    max-width: 600px;
    margin: 0 auto 44px;
    line-height: 1.8;
}
.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}
.hero-trust {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: rgba(245, 240, 232, 0.6);
}
.trust-item svg { color: #c9a84c; flex-shrink: 0; }
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(201, 168, 76, 0.6);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    z-index: 1;
}
.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(201, 168, 76, 0.6), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.7); }
}

/* ===== ABOUT ===== */
.about {
    padding: 120px 0;
    position: relative;
}
.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(201, 168, 76, 0.3));
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-images {
    position: relative;
}
.about-img-main {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 55%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
    border: 4px solid #0a0f0d;
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-accent {
    position: absolute;
    top: -20px;
    right: 40%;
    color: #c9a84c;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(5deg); }
}
.about-content { padding-top: 20px; }
.about-text {
    font-size: 1.05rem;
    color: rgba(245, 240, 232, 0.7);
    margin-bottom: 20px;
    line-height: 1.8;
}
.about-values {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-top: 44px;
}
.value-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.value-icon {
    color: #c9a84c;
    flex-shrink: 0;
    margin-top: 2px;
}
.value-item h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #f5f0e8;
    margin-bottom: 4px;
}
.value-item p {
    font-size: 0.9rem;
    color: rgba(245, 240, 232, 0.6);
    line-height: 1.6;
}

/* ===== CARNICERIA ===== */
.carniceria {
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(16, 40, 28, 0.2) 0%, transparent 100%);
    position: relative;
}
.carniceria::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.2), transparent);
}
.carniceria-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 64px;
}
.carniceria-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
}
.carniceria-card:hover {
    border-color: rgba(201, 168, 76, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(201, 168, 76, 0.15);
}
.card-img {
    height: 240px;
    overflow: hidden;
}
.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.carniceria-card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 32px; }
.card-body h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #f5f0e8;
}
.card-body > p {
    font-size: 0.95rem;
    color: rgba(245, 240, 232, 0.65);
    margin-bottom: 20px;
    line-height: 1.7;
}
.card-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.card-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(245, 240, 232, 0.75);
}
.card-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #c9a84c;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===== TAQUERIA ===== */
.taqueria {
    padding: 120px 0;
    position: relative;
}
.taqueria::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.2), transparent);
}
.taqueria-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}
.taqueria-text {
    font-size: 1.05rem;
    color: rgba(245, 240, 232, 0.7);
    margin-bottom: 20px;
    line-height: 1.8;
}
.taqueria-highlights {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 40px 0;
}
.highlight {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.highlight-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(201, 168, 76, 0.25);
    line-height: 1;
    flex-shrink: 0;
    width: 36px;
}
.highlight strong {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #f5f0e8;
    margin-bottom: 4px;
}
.highlight span {
    font-size: 0.9rem;
    color: rgba(245, 240, 232, 0.6);
    line-height: 1.6;
}
.taqueria-visual { position: relative; }
.taqueria-img-stack { position: relative; }
.ts-main {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4);
}
.ts-main img { width: 100%; height: 100%; object-fit: cover; }
.ts-accent {
    position: absolute;
    bottom: -32px;
    left: -32px;
    width: 50%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
    border: 4px solid #0a0f0d;
}
.ts-accent img { width: 100%; height: 100%; object-fit: cover; }

/* ===== SPECIALTIES ===== */
.specialties {
    padding: 120px 0;
    background: linear-gradient(180deg, rgba(16, 40, 28, 0.15) 0%, transparent 100%);
    position: relative;
}
.specialties::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.2), transparent);
}
.specialties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 64px;
}
.spec-card {
    padding: 40px 32px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 12px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, transparent, #c9a84c, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.spec-card:hover {
    border-color: rgba(201, 168, 76, 0.25);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-4px);
}
.spec-card:hover::before { opacity: 1; }
.spec-icon {
    color: #c9a84c;
    margin-bottom: 24px;
}
.spec-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #f5f0e8;
}
.spec-card p {
    font-size: 0.9rem;
    color: rgba(245, 240, 232, 0.6);
    line-height: 1.7;
}

/* ===== VISIT ===== */
.visit {
    padding: 120px 0;
    position: relative;
}
.visit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(201, 168, 76, 0.2), transparent);
}
.visit-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}
.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 40px 0;
}
.info-block {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.info-icon {
    color: #c9a84c;
    flex-shrink: 0;
    margin-top: 2px;
}
.info-block h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 6px;
}
.info-block p, .info-block a {
    font-size: 1rem;
    color: rgba(245, 240, 232, 0.75);
    line-height: 1.7;
}
.info-block a:hover { color: #c9a84c; }
.visit-map {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.15);
    margin-top: 8px;
}
.map-link {
    position: relative;
    display: block;
}
.map-link img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}
.map-link:hover img { opacity: 0.8; }
.map-overlay {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(10, 15, 13, 0.9);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #c9a84c;
    transition: background 0.3s ease;
}
.map-link:hover .map-overlay { background: rgba(10, 15, 13, 0.95); }

/* Form */
.form-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 16px;
    padding: 48px;
}
.form-card h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}
.form-card > p {
    font-size: 0.95rem;
    color: rgba(245, 240, 232, 0.6);
    margin-bottom: 36px;
}
.form-group {
    margin-bottom: 24px;
}
.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.5);
    margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 6px;
    color: #f5f0e8;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(245, 240, 232, 0.3);
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: #c9a84c;
    background: rgba(201, 168, 76, 0.05);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}
.form-group textarea { resize: vertical; }
.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(16, 80, 50, 0.3);
    border: 1px solid rgba(16, 120, 70, 0.4);
    border-radius: 8px;
    margin-top: 16px;
    color: #4ade80;
    font-size: 0.9rem;
}
.form-success svg { color: #4ade80; flex-shrink: 0; }

/* ===== FOOTER ===== */
.site-footer {
    padding: 80px 0 0;
    border-top: 1px solid rgba(201, 168, 76, 0.12);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 60px;
    padding-bottom: 60px;
}
.footer-brand p {
    font-size: 0.9rem;
    color: rgba(245, 240, 232, 0.55);
    margin-top: 16px;
    line-height: 1.7;
    max-width: 300px;
}
.footer-links h4,
.footer-contact h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #c9a84c;
    margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
    font-size: 0.9rem;
    color: rgba(245, 240, 232, 0.6);
    transition: color 0.3s ease;
}
.footer-links a:hover { color: #c9a84c; }
.footer-contact ul { display: flex; flex-direction: column; gap: 14px; }
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(245, 240, 232, 0.6);
}
.footer-contact svg { color: #c9a84c; flex-shrink: 0; margin-top: 3px; }
.footer-contact a:hover { color: #c9a84c; }
.footer-bottom {
    border-top: 1px solid rgba(201, 168, 76, 0.1);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(245, 240, 232, 0.4);
}

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-grid,
    .taqueria-layout,
    .visit-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .about-img-secondary { right: 0; }
    .ts-accent { left: 0; }
    .carniceria-grid { grid-template-columns: repeat(2, 1fr); }
    .specialties-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: rgba(10, 15, 13, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 28px;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(201, 168, 76, 0.15);
    }
    .nav-menu.open { right: 0; }
    .nav-menu::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 70% 30%, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
        pointer-events: none;
    }
    .nav-link { font-size: 1.1rem; }
    .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
    .hero-trust { flex-direction: column; align-items: center; gap: 12px; }
    .carniceria-grid { grid-template-columns: 1fr; }
    .specialties-grid { grid-template-columns: 1fr; }
    .form-card { padding: 32px 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .about-img-secondary { width: 60%; right: -16px; bottom: -24px; }
    .ts-accent { width: 55%; left: -16px; bottom: -24px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-content { padding: 100px 16px 60px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .btn { width: 100%; justify-content: center; }
    .about-values { gap: 24px; }
}
